ETHReport/next.config.js

11 lines
232 B
JavaScript

const withSass = require('@zeit/next-sass')
module.exports =
withSass({
assetPrefix: isProduction ? '/ETHPrize' : '',
exportPathMap: function(defaultPathMap) {
return {
'/': { page: '/' }
}
}
});