26 lines
570 B
JavaScript
26 lines
570 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
module.exports = defineConfig({
|
|
// 关闭eslint
|
|
lintOnSave:false,
|
|
transpileDependencies: true,
|
|
devServer: {
|
|
port: 8081, // 此处修改你想要的端口号
|
|
client: {
|
|
overlay: false
|
|
},
|
|
// port: 6006,
|
|
// proxy: {
|
|
// // 第一台服务器配置
|
|
// '/mini-rest': {
|
|
// target: 'http://localhost:6006',
|
|
// ws: true,
|
|
// changeOrigin: true,
|
|
// pathRewrite: {
|
|
// '^/mini-rest': '/mini-rest'
|
|
// }
|
|
// },
|
|
// }
|
|
}
|
|
|
|
})
|