mango-web/next.config.js

12 lines
179 B
JavaScript

module.exports = {
target: 'serverless',
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
})
return config
},
}