ETHReport/next.config.js

11 lines
232 B
JavaScript
Raw Normal View History

2018-06-27 13:06:10 +00:00
const withSass = require('@zeit/next-sass')
module.exports =
withSass({
2018-07-09 07:42:19 +00:00
assetPrefix: isProduction ? '/ETHPrize' : '',
2018-06-27 13:06:10 +00:00
exportPathMap: function(defaultPathMap) {
return {
'/': { page: '/' }
}
}
});