601所,仿真测试项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
311 B

1 week ago
const { defineConfig } = require('@vue/cli-service')
1 week ago
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
port: 8080, // 建议显式设置端口
proxy: {
'/': {
target: 'http://localhost:8088',
changeOrigin: true,
ws: false,
1 week ago
}
}
},
})