mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 19:59:02 +08:00
32 lines
692 B
JavaScript
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',
|
|
// }
|
|
// },
|
|
]
|
|
}
|