From 8f8dac1bcfaec563d3926c7cc357d36f6c02a9a2 Mon Sep 17 00:00:00 2001 From: Thatsaphorn Atchariyaphap Date: Sat, 7 Jun 2025 21:48:44 +0200 Subject: [PATCH] Configure Next.js for standalone output --- main-website/next.config.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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;