12345678910111213 |
- const assetPrefix = '/tocbot'
- module.exports = {
- assetPrefix,
- webpack: (webpackConfig) => {
- const newConfig = Object.assign({}, webpackConfig)
- return newConfig
- },
- exportPathMap: () => ({
- '/': { page: '/' },
- '/changelog': { page: '/changelog' }
- })
- }
|