mango-ui-v2/next.config.js

12 lines
179 B
JavaScript
Raw Normal View History

module.exports = {
2021-04-13 12:48:36 -07:00
target: 'serverless',
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
})
return config
},
}