12 lines
306 B
JavaScript
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 // 自动打开浏览器
|
|
}
|
|
}
|