Created
May 29, 2020 13:00
-
-
Save ruslansavenok/0cb32e2d1589e8ee99e053604c00bc9f to your computer and use it in GitHub Desktop.
Gatsby prismic index
This file contains hidden or 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
{ | |
type: 'Page', | |
match: '/:uid', | |
path: '/preview-page', | |
filter: data => data.node._meta.uid !== 'index', | |
component: require.resolve('./src/templates/page.js'), | |
langs: ['en-us'], | |
}, | |
{ | |
type: 'Page', | |
match: '', | |
path: '/', | |
filter: data => data.node._meta.uid === 'index', | |
component: require.resolve('./src/templates/page.js'), | |
langs: ['en-us'], | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment