ECS-Vue/vue.config.js
2025-03-26 17:38:40 +08:00

12 lines
306 B
JavaScript

const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true
})
module.exports = {
devServer: {
port: 3100, // 将默认端口 3100
host: 'localhost', // 可选:设置为 '0.0.0.0' 后台访问
open: true // 自动打开浏览器
}
}