13 lines
360 B
JavaScript
13 lines
360 B
JavaScript
const { defineConfig } = require('@vue/cli-service')
|
|
|
|
module.exports = {
|
|
transpileDependencies: true,
|
|
//publicPath: 'http://localhosst:3100', // 这里控制静态资源的前缀路径
|
|
devServer: {
|
|
port: 3100, // 将默认端口 3100
|
|
host: 'localhost', // 可选:设置为 '0.0.0.0' 后台访问
|
|
open: true // 自动打开浏览器
|
|
}
|
|
|
|
}
|