diff --git a/main-website/next.config.ts b/main-website/next.config.ts index e9ffa30..14bada1 100644 --- a/main-website/next.config.ts +++ b/main-website/next.config.ts @@ -1,7 +1,9 @@ -import type { NextConfig } from "next"; +import type {NextConfig} from "next"; const nextConfig: NextConfig = { - /* config options here */ + output: 'standalone', + basePath: '', + assetPrefix: '', }; export default nextConfig;