1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- module.exports = {
- productionSourceMap: false,
- publicPath: "./",
- // outputDir: "faw-dbv",
- devServer: {
- open: true,
- // host: "127.0.0.1",
- port: 8080,
- https: false,
- hotOnly: false,
- proxy: {
- "/chart": {
- // target: "http://10.16.4.11:7001", // 要访问的接口域名
- target: "http://127.0.0.1:7001", // 要访问的接口域名
- // target: "http://10.112.4.7:31015", // 要访问的接口域名
- // target: "http://10.16.4.4:7001", // 要访问的接口域名
- // target: "http://10.6.181.20:31002", // alb后端路径
- // target: "http://10.7.116.245:31045", // 生产后端路径
- // target: "http://10.124.20.2:60075/chart", // 线上代理
- // target: "http://fawtsp-ops.faw.cn:60075/chart", // 生产线上代理 10.7.116.247:60070
- ws: true, // 是否启用websockets
- changeOrigin: true, //开启代理:在本地会创建一个虚拟服务端,然后发送请求的数据,并同时接收请求的数据,这样服务端和服务端进行数据的交互就不会有跨域问题
- pathRewrite: {
- "^/chart": "" //这里理解成用'/api'代替target里面的地址,比如我要调用'http://40.00.100.100:3002/user/add',直接写'/api/user/add'即可
- }
- }
- }
- },
- css: {
- loaderOptions: {
- postcss: {
- // 这是rem适配的配置 注意: remUnit在这里要根据lib-flexible的规则来配制,如果您的设计稿是750px的,用75就刚刚好。
- plugins: [
- require("postcss-px2rem")({
- remUnit: 192,
- remPrecision: 5
- })
- ]
- }
- }
- }
- };
|