mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
16 lines
407 B
JavaScript
16 lines
407 B
JavaScript
|
// This file is not going through babel transformation.
|
||
|
// So, we write it in vanilla JS
|
||
|
// (But you could use ES2015 features supported by your Node.js version)
|
||
|
|
||
|
const debug = process.env.NODE_ENV !== 'production'
|
||
|
|
||
|
module.exports = {
|
||
|
exportPathMap: function () {
|
||
|
return {
|
||
|
'/': { page: '/' },
|
||
|
'/about': { page: '/about' }
|
||
|
}
|
||
|
},
|
||
|
assetPrefix: !debug ? '/Next-gh-page-example/' : ''
|
||
|
}
|