config refactor

This commit is contained in:
Matthias Kretschmann 2021-09-13 00:09:25 +02:00
parent bb65ade4da
commit 2c98082c1c
Signed by: m
GPG Key ID: 606EEEF3C479A91F
1 changed files with 18 additions and 25 deletions

View File

@ -1,30 +1,23 @@
// eslint-disable-next-line no-unused-vars module.exports = (phase, { defaultConfig }) => {
const withSvgr = (nextConfig = {}, nextComposePlugins = {}) => { /**
return Object.assign({}, nextConfig, { * @type {import('next').NextConfig}
webpack(config, options) { */
const nextConfig = {
webpack: (config, options) => {
config.module.rules.push({ config.module.rules.push({
test: /\.svg$/, test: /\.svg$/,
use: [ use: [{ loader: '@svgr/webpack', options: { icon: true } }]
{
loader: '@svgr/webpack',
options: {
icon: true
}
}
]
}) })
return typeof defaultConfig.webpack === 'function'
? defaultConfig.webpack(config, options)
: config
},
bundleAnalyzer: () =>
require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true'
}),
reactStrictMode: true
}
if (typeof nextConfig.webpack === 'function') { return nextConfig
return nextConfig.webpack(config, options)
}
return config
}
})
} }
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true'
})
module.exports = withSvgr(withBundleAnalyzer())