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