| | |
| | | |
| | | const CompressionPlugin = require("compression-webpack-plugin"); |
| | | |
| | | const name = process.env.VUE_APP_TITLE || "若依管理系统"; // 网页标题 |
| | | const name = process.env.VUE_APP_TITLE || "LIMS实验室管理系统"; // 网页标题 |
| | | |
| | | const port = process.env.port || process.env.npm_config_port || 80; // 端口 |
| | | |
| | |
| | | proxy: { |
| | | // detail: https://cli.vuejs.org/config/#devserver-proxy |
| | | [process.env.VUE_APP_BASE_API]: { |
| | | target: `http://localhost:8001`, |
| | | // target: `http://36.213.90.123:9015/lims`, |
| | | target: `http://127.0.0.1:9509/lims`, |
| | | changeOrigin: true, |
| | | pathRewrite: { |
| | | ["^" + process.env.VUE_APP_BASE_API]: "", |
| | |
| | | loader: 'worker-loader', |
| | | options: { |
| | | filename: '[name].[contenthash].worker.js', |
| | | inline: 'false' |
| | | inline: 'fallback' |
| | | } |
| | | }, |
| | | type: 'javascript/auto' // 👈 强制 Webpack 不要按模块解析 |