vue.config.js 407 B

1234567891011121314151617
  1. // vue.config.js
  2. module.exports = {
  3. publicPath: './',
  4. devServer: {
  5. proxy: {
  6. [process.env.VUE_APP_BASE_API]: {
  7. // target: `http://wx.hw.hongweisoft.com/veterans/company/`,
  8. target: `http://172.16.90.64:7200/company/`,
  9. changeOrigin: true,
  10. pathRewrite: {
  11. ['^' + process.env.VUE_APP_BASE_API]: ''
  12. }
  13. }
  14. },
  15. disableHostCheck: true
  16. },
  17. }