mango-ui-v3/next.config.js

16 lines
308 B
JavaScript
Raw Normal View History

2021-04-24 19:10:28 -07:00
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})
module.exports = withBundleAnalyzer({
2021-04-13 12:48:36 -07:00
target: 'serverless',
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
})
return config
},
2021-04-24 19:10:28 -07:00
})