fix: add standalone output config for Docker build

This commit is contained in:
Andrej Spielmann
2026-03-26 15:48:18 +01:00
parent 0721cbf879
commit fb43a8ee9c
+4 -1
View File
@@ -1,7 +1,10 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: 'standalone',
images: {
unoptimized: true,
},
};
export default nextConfig;