docs: add seo plugins

This commit is contained in:
bcakmakoglu
2022-07-05 21:53:30 +02:00
committed by Braks
parent 9c171c0ff8
commit b11feaf2ce
5 changed files with 133 additions and 70 deletions
+4 -10
View File
@@ -1,20 +1,14 @@
import { Plugin } from 'vite'
import { existsSync, readFileSync } from 'fs'
import { resolve } from 'path'
import type { Plugin } from 'vite'
export function copyVueFlowPlugin(): Plugin {
return {
name: 'copy-vue-flow',
generateBundle() {
const filePath = resolve(
__dirname,
'../../node_modules/@braks/vue-flow/dist/vue-flow.es.js'
)
const filePath = resolve(__dirname, '../../node_modules/@braks/vue-flow/dist/vue-flow.es.js')
if (!existsSync(filePath)) {
throw new Error(
`@braks/vue-flow/dist/vue-flow.es.js not built. ` +
`Run "pnpm -w build" first.`
)
throw new Error(`@braks/vue-flow/dist/vue-flow.es.js not built. ` + `Run "pnpm -w build" first.`)
}
this.emitFile({
@@ -22,6 +16,6 @@ export function copyVueFlowPlugin(): Plugin {
fileName: 'vue-flow.es.js',
source: readFileSync(filePath, 'utf-8'),
})
}
},
}
}