tiptap/gridsome.config.js
2019-12-07 21:02:22 +01:00

32 lines
692 B
JavaScript

module.exports = {
siteName: 'TipTap',
port: 3000,
plugins: [
{
use: '@gridsome/vue-remark',
options: {
typeName: 'Post',
baseDir: './content/posts',
route: '/posts/:slug',
template: './src/templates/Post.vue',
plugins: [
'@gridsome/remark-prismjs',
[
'@noxify/gridsome-plugin-remark-embed',
{
'enabledProviders' : ['Youtube', 'Twitter', 'Gist'],
},
],
],
}
},
// {
// use: '@gridsome/source-filesystem',
// options: {
// path: './people/**/*.json',
// typeName: 'People',
// }
// },
]
}