加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
sechi747 提交于 2021-09-03 15:43 . update
// const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
// const CompressionWebpackPlugin = require("compression-webpack-plugin");
// const productionGzipExtensions = ["js", "css"];
// const env = process.env.NODE_ENV;
module.exports = {
// configureWebpack: (config) => {
// if (env !== "development" || env !== "test") {
// config.plugins.push(
// new CompressionWebpackPlugin({
// algorithm: "gzip",
// test: new RegExp(`\\.(${productionGzipExtensions.join("|")})$`),
// threshold: 10240,
// minRatio: 0.8,
// })
// );
// config.plugins.push(
// new UglifyJsPlugin({
// uglifyOptions: {
// compress: {
// warnings: false,
// drop_debugger: true, // console
// drop_console: true,
// pure_funcs: ["console.log"], // 移除console
// },
// },
// sourceMap: false,
// parallel: true,
// })
// );
// }
// },
publicPath: './',
devServer: {
host: "0.0.0.0",
port: "9092", // 代理端口
// proxy: {
// "/api": {
// target:
// "http://192.168.1.5:8080", // 目标代理接口地址
// changeOrigin: true, // 开启代理,在本地创建一个虚拟服务端
// pathRewrite: {
// "^/api": '/',
// },
// },
// },
// proxy: 'http://192.168.1.5:8080'
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化