2019-12-05 06:46:19 -05:00
|
|
|
module.exports = {
|
|
|
|
siteName: 'Gridsome Casper',
|
|
|
|
siteUrl: 'https://www.gridsome.org',
|
|
|
|
siteDescription: 'The professional publishing platform',
|
|
|
|
titleTemplate: `%s - Gridsome`,
|
|
|
|
|
2019-12-18 08:54:22 -05:00
|
|
|
templates: {
|
|
|
|
GhostPost: '/:slug',
|
|
|
|
GhostTag: '/tag/:slug',
|
|
|
|
GhostAuthor: '/author/:slug'
|
|
|
|
},
|
|
|
|
|
2019-12-05 06:46:19 -05:00
|
|
|
plugins: [
|
|
|
|
{
|
|
|
|
use: '@gridsome/plugin-google-analytics',
|
|
|
|
options: {
|
|
|
|
id: 'UA-XXXXXXXXX-X'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2019-12-18 08:54:22 -05:00
|
|
|
use: '@gridsome/source-ghost',
|
2019-12-05 06:46:19 -05:00
|
|
|
options: {
|
2019-12-18 08:54:22 -05:00
|
|
|
baseUrl: process.env.GHOST_API_URL,
|
|
|
|
contentKey: process.env.GHOST_CONTENT_KEY,
|
|
|
|
routes: {
|
|
|
|
post: '/:slug',
|
|
|
|
page: '/:slug',
|
|
|
|
author: '/author/:slug'
|
2019-12-05 06:46:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|