Spaces:
Sleeping
Sleeping
Create next.config.mjs
Browse files- next.config.mjs +8 -3
next.config.mjs
CHANGED
|
@@ -1,7 +1,12 @@
|
|
| 1 |
/** @type {import('next').NextConfig} */
|
| 2 |
const nextConfig = {
|
| 3 |
output: 'standalone',
|
| 4 |
-
images: {
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
};
|
| 7 |
-
|
|
|
|
|
|
| 1 |
/** @type {import('next').NextConfig} */
|
| 2 |
const nextConfig = {
|
| 3 |
output: 'standalone',
|
| 4 |
+
images: {
|
| 5 |
+
unoptimized: true,
|
| 6 |
+
},
|
| 7 |
+
httpAgentOptions: {
|
| 8 |
+
keepAlive: false,
|
| 9 |
+
},
|
| 10 |
};
|
| 11 |
+
|
| 12 |
+
export default nextConfig;
|