Created
June 28, 2019 09:17
-
-
Save ondrejsika/613ca47798e01bf8d319dca8654a55ed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
exportPathMap: async function(defaultPathMap) { | |
return { | |
'/': { page: '/' }, | |
'/about-me': { page: '/about-me' }, | |
}; | |
} | |
}; | |
const withPages = require('@primer/next-pages/plugin') | |
module.exports = withPages(module.exports) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment