加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 918 Bytes
一键复制 编辑 原始数据 按行查看 历史
Rjw 提交于 2023-12-15 14:37 . 初始化
const { defineConfig } = require("@vue/cli-service");
const path = require("path");
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
proxy: {
"/api": {
target: "http://168.168.168.145:30330",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ""),
},
"/iplarform": {
target: "http://168.168.168.145:9000/iplarform",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/iplarform/, ""),
},
"/v3": {
target: "https://restapi.amap.com", // 高德地图
changeOrigin: true,
},
},
},
chainWebpack: (config) => {
// eslint-disable-next-line no-unused-expressions
config.resolve.alias.set("@", path.join(__dirname, "src"));
},
css: {
loaderOptions: {
sass: {
additionalData: `@import "@/assets/style/index.scss";`,
},
},
},
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化