vue.config.js 609 B

123456789101112131415161718192021222324252627
  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. proxyTable: {
  18. '/apis': {
  19. target:'http://tianli.liuniu946.com',
  20. changOrigin: true,
  21. pathRewrite: {
  22. '^/apis':'/apis'
  23. }
  24. }
  25. }
  26. }
  27. }