1
0
Fork 0
gaiety-life/gridsome.config.js
2019-02-26 15:54:02 +01:00

31 lines
No EOL
722 B
JavaScript

// This is where project configuration and plugin options are located.
// Learn more: https://gridsome.org/docs/config
// Changes here requires a server restart.
// To restart press CTRL + C in terminal and run `gridsome develop`
module.exports = {
siteName: 'Gridsome Blog Starter',
transformers: {
remark: {
externalLinksTarget: '_blank',
externalLinksRel: ['nofollow', 'noopener', 'noreferrer'],
anchorClassName: 'icon icon-link',
plugins: [
'@gridsome/remark-prismjs'
]
}
},
plugins: [
{
use: '@gridsome/source-filesystem',
options: {
path: 'content/posts/*.md',
typeName: 'Post',
route: '/:slug'
}
}
]
}