10 lines
171 B
JavaScript
10 lines
171 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
devServer: {
|
|
port: 3002,
|
|
proxy: {},
|
|
},
|
|
})
|