next.config.js 276 B

12345678910111213
  1. const assetPrefix = '/tocbot'
  2. module.exports = {
  3. assetPrefix,
  4. webpack: (webpackConfig) => {
  5. const newConfig = Object.assign({}, webpackConfig)
  6. return newConfig
  7. },
  8. exportPathMap: () => ({
  9. '/': { page: '/' },
  10. '/changelog': { page: '/changelog' }
  11. })
  12. }