mango-token-sale/next.config.js

15 lines
224 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'],
})
2021-05-05 05:02:16 -07:00
config.node = {
fs: 'empty',
}
2021-04-25 09:13:28 -07:00
return config
},
}