mango-token-sale/next.config.js

12 lines
179 B
JavaScript
Raw Normal View History

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