Add standalone option

This commit is contained in:
2025-10-16 13:45:55 +02:00
parent 05e8d039bd
commit 9e00e4db6c

View File

@@ -2,7 +2,13 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
compress: false,
allowedDevOrigins: ['local-origin.dev', '*.local-origin.dev', '172.17.96.1', '192.168.1.135', '0.0.0.0'],
allowedDevOrigins: [
"local-origin.dev",
"*.local-origin.dev",
"172.17.96.1",
"192.168.1.135",
"0.0.0.0",
],
async rewrites() {
return [
{
@@ -11,6 +17,7 @@ const nextConfig: NextConfig = {
},
];
},
output: "standalone",
};
export default nextConfig;