1 Star 0 Fork 0

汪新宇/Ant Design vue pro

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 2.26 KB
一键复制 编辑 原始数据 按行查看 历史
e 提交于 2021-08-18 12:50 . 打包构建优化,echart,moment,lodash
const path = require("path");
const webpack = require("webpack");
const AntDesignThemePlugin = require("antd-theme-webpack-plugin");
const {
createMockMiddleware
} = require("umi-mock-middleware");
const options = {
antDir: path.join(__dirname, "./node_modules/ant-design-vue"),
stylesDir: path.join(__dirname, "./src"),
varFile: path.join(
__dirname,
"./node_modules/ant-design-vue/lib/style/themes/default.less"
),
mainLessFile: "",
themeVariables: ["@primary-color"],
generateOnce: false
};
const themePlugin = new AntDesignThemePlugin(options);
module.exports = {
configureWebpack: {
plugins: [themePlugin, new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)],
resolve: {
alias: { //图标按需加载
// "@ant-design/icons/lib/dist$": path.resolve(__dirname, "./src/icons.js")
}
}
},
css: {
loaderOptions: {
less: {
modifyVars: {
"primary-color": "#1DA57A"
},
javascriptEnabled: true,
},
},
},
chainWebpack: config => {
const svgRule = config.module.rule('svg')
// 清除已有的所有 loader。
// 如果你不这样做,接下来的 loader 会附加在该规则现有的 loader 之后。
svgRule.uses.clear()
// 添加要替换的 loader
svgRule
.use('vue-svg-loader')
.loader('vue-svg-loader')
},
lintOnSave: false,
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8080',
bypass: function (req, res) { //bypass做mock数据的拦截
if (req.headers.accept.indexOf('html') !== -1) {
console.log('Skipping proxy for browser request.');
return '/index.html';
} else if (process.env.MOCK !== "none") {
//根据请求的url,来匹配mock文件名称
const name = req.path
.split("/api/")[1]
.split("/")
.join("_");
const mock = require(`./mock/${name}`);
const result = mock(req.method);
//require之后更改数据,是不生效的,所以需要清除缓存
//拿到缓存的位置,并清理掉
delete require.cache[require.resolve(`./mock/${name}`)];
return res.send(result)
}
}
}
}
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wang-xinyu/ant-design-vue-pro.git
git@gitee.com:wang-xinyu/ant-design-vue-pro.git
wang-xinyu
ant-design-vue-pro
Ant Design vue pro
master

搜索帮助