3 Star 36 Fork 9

caihai123/vue-clean-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
caihai 提交于 2022-07-06 14:20 . 【删除】不打印代码分支名称
const commit = require("./commit.js");
// 打包时间(启动时间)
const nowDate = new Date();
const buildDate = `${nowDate.getFullYear() +
"-" +
(nowDate.getMonth() + 1) +
"-" +
nowDate.getDate() +
" " +
nowDate.getHours() +
":" +
nowDate.getMinutes() +
":" +
nowDate.getSeconds()}`;
module.exports = {
filenameHashing: true, //是否在文件名中包含了 hash 以便更好的控制缓存
chainWebpack: (config) => {
config.plugin("define").tap((args) => {
args[0]["process.env"].commitHash = JSON.stringify(commit.commitHash);
args[0]["process.env"].buildDate = JSON.stringify(buildDate);
return args;
});
},
devServer: {
https: false,
port: 1234,
// open: 'Chrome'//构建完成之后自动打开谷歌
proxy: {
"/api": {
target: "https://caihai123.com",
ws: true,
changeOrigin: true,
pathRewrite: {
"^/api": "",
},
},
},
},
publicPath: "./",
css: {
loaderOptions: {
scss: {
prependData: `@import "~@/variables/style.scss";`,
},
},
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/caihai123/vue-clean-admin.git
git@gitee.com:caihai123/vue-clean-admin.git
caihai123
vue-clean-admin
vue-clean-admin
master

搜索帮助