12 lines
226 B
JavaScript
12 lines
226 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
devServer: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:26966',
|
|
},
|
|
},
|
|
},
|
|
})
|