vue.config.js 669 B

1234567891011121314151617181920212223242526
  1. 'use strict'
  2. const path = require('path')
  3. const port = process.env.port || process.env.npm_config_port || 9527 // dev port
  4. module.exports = {
  5. publicPath: '/',
  6. outputDir: 'dist',
  7. indexPath: process.env.NODE_ENV === 'development' ? 'mer.html' : 'index.html',
  8. lintOnSave: process.env.NODE_ENV === 'development',
  9. productionSourceMap: false,
  10. devServer: {
  11. port: port,
  12. open: true,
  13. overlay: {
  14. warnings: false,
  15. errors: true
  16. },
  17. "proxy" : {
  18. "/api" : {
  19. "target" : "http://tianli.liuniu946.com/api", //请求的目标域名
  20. "changeOrigin" : true,
  21. // "secure": false,
  22. "pathRewrite" : {'^/api': ''}
  23. }
  24. }
  25. }
  26. }