2017-05-09 21:03:20 +00:00
|
|
|
module.exports = {
|
|
|
|
exportPathMap: function () {
|
|
|
|
return {
|
|
|
|
'/': { page: '/' },
|
|
|
|
'/about': { page: '/about' },
|
2017-05-18 05:24:57 +00:00
|
|
|
'/get-initial-props-with-no-query': { page: '/get-initial-props-with-no-query' },
|
2017-05-09 21:03:20 +00:00
|
|
|
'/counter': { page: '/counter' },
|
2017-05-15 04:33:35 +00:00
|
|
|
'/dynamic-imports': { page: '/dynamic-imports' },
|
2017-05-09 21:03:20 +00:00
|
|
|
'/dynamic': { page: '/dynamic', query: { text: 'cool dynamic text' } },
|
|
|
|
'/dynamic/one': { page: '/dynamic', query: { text: 'next export is nice' } },
|
|
|
|
'/dynamic/two': { page: '/dynamic', query: { text: 'zeit is awesome' } }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|