We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d36e64 commit b2404b3Copy full SHA for b2404b3
next.config.js
@@ -2,8 +2,7 @@ const withBundleAnalyzer = require("@next/bundle-analyzer");
2
3
const config = {
4
compiler: {
5
- emotion:
6
- true
+ emotion: true,
7
},
8
};
9
@@ -12,6 +11,6 @@ const bundleAnalyzer = withBundleAnalyzer({
12
11
});
13
14
module.exports = (_phase, { defaultConfig }) => {
15
- const plugins = [bundleAnalyzer]
16
- return plugins.reduce((acc, plugin) => plugin(acc), { ...config })
17
-}
+ const plugins = [bundleAnalyzer];
+ return plugins.reduce((acc, plugin) => plugin(acc), { ...config });
+};
0 commit comments