davca-cm/vue.config.js @ f1a63183
|
const { defineConfig } = require('@vue/cli-service')
|
|
|
module.exports = defineConfig({
|
|
|
transpileDependencies: true,
|
|
|
publicPath: process.env.NODE_ENV === 'production'
|
|
|
? '/'
|
|
|
: '/'
|
|
|
})
|