initial commit

This commit is contained in:
Philipp Kühn
2019-12-07 21:02:22 +01:00
commit f9c7066302
24 changed files with 13842 additions and 0 deletions

31
gridsome.config.js Normal file
View 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',
// }
// },
]
}