1 Star 0 Fork 1.8K

zlcolin/Jpom

forked from dromara/Jpom 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 2.15 KB
一键复制 编辑 原始数据 按行查看 历史
// vue.config.js
const HOST = process.env.proxy_host;
console.log(process.env.proxy_host, HOST);
const Timestamp = new Date().getTime();
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = {
// 输出目录
outputDir: "../modules/server/src/main/resources/dist",
// 控制静态资源使用相对路径
publicPath: "./",
// 代理设置
devServer: {
port: 3000,
proxy: {
// websocket
"/ssh": {
target: `wss://${HOST}`,
// true/false: if you want to proxy websockets
ws: false,
secure: false,
},
"/tomcat_log": {
target: `wss://${HOST}`,
// true/false: if you want to proxy websockets
ws: false,
secure: false,
},
"/console": {
target: `wss://${HOST}`,
// true/false: if you want to proxy websockets
ws: false,
secure: false,
},
"/script_run": {
target: `wss://${HOST}`,
// true/false: if you want to proxy websockets
ws: false,
secure: false,
},
// http
"/*": {
target: `http://${HOST}`,
timeout: 10 * 60 * 1000,
},
},
},
//打包后是否让每个js文件都生成一个.map文件?true代表生成,false代表不生成。
productionSourceMap: false,
configureWebpack: {
// name: name,
// 修改打包后的js文件名称
output: {
// 输出重构 打包编译后的 文件名称 【模块名称.版本号.时间戳】
filename: `js/[name].[hash].${Timestamp}.js`,
chunkFilename: `js/[name].[hash].${Timestamp}.js`,
},
// 修改打包后的css文件名称
plugins: [
new MiniCssExtractPlugin({
filename: `css/[name].[contenthash].${Timestamp}.css`,
}),
],
// resolve: {
// alias: {
// "@": resolve("src")
// }
// }
},
chainWebpack: (config) => {
config.plugin("html").tap((args) => {
args[0].title = "Jpom项目管理系统";
args[0].build = new Date().getTime();
args[0].env = process.env.NODE_ENV;
args[0].buildVersion = process.env.npm_package_version;
return args;
});
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/zlcolin/Jpom.git
git@gitee.com:zlcolin/Jpom.git
zlcolin
Jpom
Jpom
master

搜索帮助