diff --git a/vue.config.js b/vue.config.js index 910e297..bc23e19 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,4 +1,6 @@ -const { defineConfig } = require('@vue/cli-service') +const {defineConfig} = require('@vue/cli-service') module.exports = defineConfig({ - transpileDependencies: true + transpileDependencies: true, + outputDir: './docs/', + publicPath: process.env.NODE_ENV === 'production' ? '/lovely/' : '/', })