initial commit
This commit is contained in:
31
gridsome.config.js
Normal file
31
gridsome.config.js
Normal file
@@ -0,0 +1,31 @@
|
||||
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',
|
||||
// }
|
||||
// },
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user