Revision b8ad0125
Added by chrisker85 2 months ago
| vue.config.js | ||
|---|---|---|
|
const { defineConfig } = require('@vue/cli-service')
|
||
|
module.exports = defineConfig({
|
||
|
transpileDependencies: true,
|
||
|
publicPath: process.env.NODE_ENV === 'production' ? '/dev/' : '/dev/'
|
||
|
publicPath: process.env.NODE_ENV === 'production'
|
||
|
? '/'
|
||
|
: '/'
|
||
|
})
|
||
change