1 Star 0 Fork 1

万里/easy-workbench-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
万里 提交于 2021-06-18 10:29 . 更新依赖
"use strict";
// 基础配置文件
const path = require("path");
const webpack = require("webpack");
// 拼接路径
function resolve(dir) {
return path.join(__dirname, dir);
}
// 基础路径 注意发布之前要先修改这里
const BASE_URL = process.env.NODE_ENV === "production" ? "/frontend/" : "/";
module.exports = {
publicPath: BASE_URL, // 根据你的实际情况更改这里
productionSourceMap: false,
devServer: {
publicPath: BASE_URL, // 和 publicPath 保持一致
},
css: {
loaderOptions: {
less: {
modifyVars: {
"ai-prefix": "ai",
"primary-color": "#2ECCCD",
},
paths: [resolve("node_modules"), resolve("src")],
javascriptEnabled: true,
},
},
},
configureWebpack: {
plugins: [
new webpack.ContextReplacementPlugin(
/moment[\\/]locale$/,
/^\.\/(zh-cn|en-us)$/
),
],
},
chainWebpack: (config) => {
const svgRule = config.module.rule("svg");
svgRule.uses.clear();
svgRule.include
.add(resolve("src/assets/svg-icons"))
.end()
.use("svg-sprite-loader")
.loader("svg-sprite-loader")
.options({
symbolId: "ai-[name]",
})
.end();
// image exclude
const imagesRule = config.module.rule("images");
imagesRule
.test(/\.(png|jpe?g|gif|webp|svg)(\?.*)?$/)
.exclude.add(resolve("src/assets/svg-icons"))
.end();
// 重新设置 alias
config.resolve.alias.set("@", resolve("src"));
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wanliofficial/easy-workbench-admin.git
git@gitee.com:wanliofficial/easy-workbench-admin.git
wanliofficial
easy-workbench-admin
easy-workbench-admin
dev

搜索帮助

0d507c66 1850385 C8b1a773 1850385