mirror of
https://github.com/Xevion/lovely.git
synced 2025-12-06 01:15:30 -06:00
7 lines
219 B
JavaScript
7 lines
219 B
JavaScript
const {defineConfig} = require('@vue/cli-service')
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
outputDir: './docs/',
|
|
publicPath: process.env.NODE_ENV === 'production' ? '/lovely/' : '/',
|
|
})
|