Spaces:
Sleeping
Sleeping
Update next.config.ts
Browse files- next.config.ts +7 -5
next.config.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
| 1 |
-
|
| 2 |
-
import type {NextConfig} from 'next';
|
| 3 |
|
| 4 |
const nextConfig: NextConfig = {
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
| 6 |
typescript: {
|
| 7 |
ignoreBuildErrors: true,
|
| 8 |
},
|
|
@@ -21,9 +23,9 @@ const nextConfig: NextConfig = {
|
|
| 21 |
},
|
| 22 |
experimental: {
|
| 23 |
allowedDevOrigins: [
|
| 24 |
-
|
| 25 |
],
|
| 26 |
-
}
|
| 27 |
};
|
| 28 |
|
| 29 |
export default nextConfig;
|
|
|
|
| 1 |
+
import type { NextConfig } from 'next';
|
|
|
|
| 2 |
|
| 3 |
const nextConfig: NextConfig = {
|
| 4 |
+
// Add this line for optimal Docker deployment
|
| 5 |
+
output: 'standalone',
|
| 6 |
+
|
| 7 |
+
/* existing config options */
|
| 8 |
typescript: {
|
| 9 |
ignoreBuildErrors: true,
|
| 10 |
},
|
|
|
|
| 23 |
},
|
| 24 |
experimental: {
|
| 25 |
allowedDevOrigins: [
|
| 26 |
+
'https://6000-firebase-studio-1749886052794.cluster-zumahodzirciuujpqvsniawo3o.cloudworkstations.dev',
|
| 27 |
],
|
| 28 |
+
},
|
| 29 |
};
|
| 30 |
|
| 31 |
export default nextConfig;
|