1 Star 0 Fork 1

山东农业大学-张峰/qihe-wechat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 2.09 KB
一键复制 编辑 原始数据 按行查看 历史
wangweiqiang 提交于 2022-03-30 22:30 . 微信项目第一次提交
let path = require("path");
const ThemeColorReplacer = require("webpack-theme-color-replacer");
const { getThemeColors, modifyVars } = require("./src/utils/themeUtil");
const { resolveCss } = require("./src/utils/theme-color-replacer-extend");
module.exports = {
devServer: {
proxy: {
// 配置跨域
"/api": {
// target: 'http://111.17.201.197:9088/', //这里后台的地址模拟的;应该填写你们真实的后台接口(测试外网)
target: 'http://192.168.50.91:8088/',//(生产环境内网)
// target: 'http://192.168.50.92:8088/',//(开发和准生产环境内网)
changOrigin: true, //允许跨域
pathRewrite: {
/* 重写路径,当我们在浏览器中看到请求的地址为:http://localhost:8080/api/core/getData/userInfo 时
实际上访问的地址是:http://121.121.67.254:8185/core/getData/userInfo,因为重写了 /api
*/
"^/api": "",
},
}
},
port: 9999, // 此处修改你想要的端口号
disableHostCheck: true
},
pluginOptions: {
"style-resources-loader": {
preProcessor: "less",
patterns: [path.resolve(__dirname, "./src/theme/theme.less")],
},
},
configureWebpack: (config) => {
config.entry.app = ["babel-polyfill", "whatwg-fetch", "./src/main.js"];
config.plugins.push(
new ThemeColorReplacer({
fileName: "css/theme-colors-[contenthash:8].css",
matchColors: getThemeColors(),
resolveCss,
})
);
},
chainWebpack: (config) => {
// 生产环境下关闭css压缩的 colormin 项,因为此项优化与主题色替换功能冲突
if (process.env.NODE_ENV === "production") {
config.plugin("optimize-css").tap((args) => {
args[0].cssnanoOptions.preset[1].colormin = false;
return args;
});
}
},
css: {
loaderOptions: {
less: {
lessOptions: {
modifyVars: modifyVars(),
javascriptEnabled: true,
},
},
},
},
publicPath: "./",
outputDir: "dist",
assetsDir: "static",
productionSourceMap: false,
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sdaugit/qihe-wechat.git
[email protected]:sdaugit/qihe-wechat.git
sdaugit
qihe-wechat
qihe-wechat
release

搜索帮助