Configure Next.js for standalone output

This commit is contained in:
2025-06-07 21:48:44 +02:00
parent 38d5cfb7d6
commit 8f8dac1bcf

View File

@@ -1,7 +1,9 @@
import type {NextConfig} from "next";
const nextConfig: NextConfig = {
/* config options here */
output: 'standalone',
basePath: '',
assetPrefix: '',
};
export default nextConfig;