1 Star 0 Fork 0

yanghang/ant-design-vue-pro

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.76 KB
一键复制 编辑 原始数据 按行查看 历史
yanghang 提交于 2022-05-15 13:56 . feat: form
const { defineConfig } = require("@vue/cli-service");
const webpack = require("webpack");
const path = require("path");
module.exports = defineConfig({
transpileDependencies: true,
css: {
loaderOptions: {
less: {
lessOptions: {
modifyVars: {
"@font-size-base": "14px", // 主字号
"@line-height-base": "1.5",
},
javascriptEnabled: true,
// 兼容 less-loader 3.x
math: "always",
},
},
},
},
configureWebpack: {
plugins: [
new webpack.IgnorePlugin({
resourceRegExp: /^\.\/locale$/,
contextRegExp: /moment$/,
}),
],
resolve: {
alias: {
"@ant-design/icons/lib/dist$": path.resolve(
__dirname,
"./src/icons.js"
),
},
},
},
chainWebpack: (config) => {
const svgRule = config.module.rule("svg");
// 清除已有的所有 loader。
// 如果你不这样做,接下来的 loader 会附加在该规则现有的 loader 之后。
svgRule.uses.clear();
// 添加要替换的 loader
svgRule.use("vue-svg-loader").loader("vue-svg-loader");
},
devServer: {
proxy: {
"/api": {
target: "http://localhost:8080",
bypass: function (req, res) {
if (req.headers.accept.indexOf("html") !== -1) {
console.log("-----");
return "/index.html";
} else if (process.env.MOCK !== "none") {
const name = req.path.split("/api/")[1].split("/").join("_");
const mock = require(`./mock/${name}`);
const result = mock(req.method);
delete require.cache[require.resolve(`./mock/${name}`)];
return res.send(result);
}
},
},
},
},
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/ock/ant-design-vue-pro.git
[email protected]:ock/ant-design-vue-pro.git
ock
ant-design-vue-pro
ant-design-vue-pro
master

搜索帮助