vue.config.js 1008 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * @LastEditors: gcz
  3. */
  4. // /*
  5. // * @LastEditors: gcz
  6. // */
  7. // // vue.config.js
  8. // const targetApi1 = process.env.NODE_ENV === 'development' ? "https://www.fastmock.site/mock/849a36d819c7df17b9a9e57c62a74a63/mock" : "http://www.ceshi1.com";
  9. // const targetApi2 = process.env.NODE_ENV === 'development' ? "http://www.kaifa2.com" : "http://www.ceshi2.com";
  10. // module.exports = {
  11. // devServer: {
  12. // proxy: {
  13. // '/api1': {
  14. // target: targetApi1,
  15. // changeOrigin: true,
  16. // pathRewrite: {
  17. // "/api1": ""
  18. // }
  19. // },
  20. // '/api2': {
  21. // target: targetApi2,
  22. // changeOrigin: true,
  23. // pathRewrite: {
  24. // '/api2': ""
  25. // }
  26. // },
  27. // }
  28. // }
  29. // }
  30. module.exports = {
  31. publicPath: './',
  32. configureWebpack: {
  33. externals: {
  34. AMap: "AMap",
  35. AMapUI: "AMapUI"
  36. }
  37. }
  38. }