cjo93 commited on
Commit
2edfb73
·
verified ·
1 Parent(s): 4a9a4b6

Create next.config.mjs

Browse files
Files changed (1) hide show
  1. 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: { unoptimized: true },
5
- httpAgentOptions: { keepAlive: false },
 
 
 
 
6
  };
7
- export default nextConfig;
 
 
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;