代码拉取完成,页面将自动刷新
const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave: false, //禁用enlist格式报错
//更改默认端口
devServer: {
historyApiFallback: true,
allowedHosts: "all", //跳过检查host,用于内网穿透
open: true, // 自动打开浏览器
port: 8081,
proxy: {
"/api": {
target: 'http://localhost:8080',//代理地址 凡是使用/api
changeOrigin: true,//允许跨域请求
secure: false,
pathRewrite: { //重写路径 替换请求地址中的指定路径
'^/api': '' //将请求地址中的api替换为空
}
}
}
},
//打包配置文件
assetsDir: 'static',
parallel: false,
publicPath: './',
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。