mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-25 21:19:06 +08:00
55 lines
1.1 KiB
JavaScript
55 lines
1.1 KiB
JavaScript
const path = require('path')
|
|
|
|
function addStyleResource(rule) {
|
|
rule.use('style-resource')
|
|
.loader('style-resources-loader')
|
|
.options({
|
|
patterns: [
|
|
path.resolve(__dirname, './src/variables.scss'),
|
|
],
|
|
})
|
|
}
|
|
|
|
module.exports = {
|
|
siteName: 'tiptap 2',
|
|
titleTemplate: '%s',
|
|
port: 3000,
|
|
plugins: [
|
|
{
|
|
use: '@gridsome/vue-remark',
|
|
options: {
|
|
typeName: 'DocPage',
|
|
baseDir: './src/docPages',
|
|
template: './src/templates/DocPage',
|
|
index: './introduction',
|
|
plugins: [
|
|
'@gridsome/remark-prismjs',
|
|
'remark-container',
|
|
],
|
|
remark: {
|
|
autolinkHeadings: {
|
|
content: {
|
|
type: 'text',
|
|
value: '#'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{
|
|
use: 'gridsome-plugin-simple-analytics',
|
|
options: {
|
|
domain: 'data.tiptap.dev',
|
|
},
|
|
},
|
|
],
|
|
chainWebpack(config) {
|
|
// Load variables for all vue-files
|
|
const types = ['vue-modules', 'vue', 'normal-modules', 'normal']
|
|
|
|
types.forEach(type => {
|
|
addStyleResource(config.module.rule('scss').oneOf(type))
|
|
})
|
|
},
|
|
}
|