12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 'use strict'
- const path = require('path')
- module.exports = {
- dev: {
-
- assetsSubDirectory: 'static',
- assetsPublicPath: '/',
- proxyTable: {},
-
- host: '192.168.0.215',
- port: 8080,
- autoOpenBrowser: false,
- errorOverlay: true,
- notifyOnErrors: true,
- poll: false,
- proxy: {
-
-
- [process.env.VUE_APP_BASE_API]: {
-
-
- target:`http://api.dms.66km.com.cn/`,
- timeout: 8640000,
- changeOrigin: true,
- pathRewrite: {
- ['^' + process.env.VUE_APP_BASE_API]: ''
- }
- }
|