1
0
mirror of https://github.com/kremalicious/ipfs.git synced 2024-06-10 11:25:31 +02:00
ipfs/next.config.js

24 lines
601 B
JavaScript

module.exports = (phase, { defaultConfig }) => {
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
webpack: (config, options) => {
config.module.rules.push({
test: /\.svg$/,
use: [{ 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
}
return nextConfig
}