mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
4cab5228a0
* gh-page-exemple * add babelrc for gh-page exemple * Fix example (exemple in fr) * example fix typo * lint fix
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/' : ''
|
|
}
|