Skip to content

Commit a06218f

Browse files
remove no longer required serverMinification: false options
1 parent e8fe93c commit a06218f

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

examples/api/next.config.mjs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
output: "standalone",
4-
experimental: {
5-
// IMPORTANT: this option is necessary for the chunks hack since that relies on the webpack-runtime.js file not being minified
6-
// (since we regex-replace relying on specific variable names)
7-
serverMinification: false,
8-
},
94
};
105

116
export default nextConfig;
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
output: "standalone",
4-
experimental: {
5-
serverMinification: false,
6-
},
74
};
85

96
export default nextConfig;

0 commit comments

Comments
 (0)