tiptap/docs/gridsome.config.js
2020-11-06 14:20:00 +01:00

68 lines
1.4 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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',
titleTemplate: '%s | tiptap',
port: 3000,
plugins: [
{
use: '@gridsome/vue-remark',
options: {
typeName: 'DocPage',
baseDir: './src/docPages',
template: './src/templates/DocPage/index.vue',
index: './introduction',
plugins: [
'@gridsome/remark-prismjs',
'remark-container',
'remark-toc',
],
remark: {
autolinkHeadings: {
content: {
type: 'text',
value: '#',
},
},
},
},
},
{
use: 'gridsome-plugin-simple-analytics',
options: {
domain: 'data.tiptap.dev',
},
},
],
runtimeCompiler: true,
configureWebpack: {
node: {
fs: 'empty',
child_process: 'empty',
tls: 'empty',
net: 'empty',
},
externals: {
canvas: 'commonjs canvas',
},
},
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))
})
},
}