vue.config.js 349 B

12345678910111213141516171819
  1. const baseUrl = '/www'
  2. module.exports = {
  3. publicPath: baseUrl,
  4. productionSourceMap: false,
  5. devServer: {
  6. port: 4000,
  7. proxy: {
  8. '/api/': {
  9. target: 'http://localhost:18099'
  10. // target: 'http://192.168.4.1:7001'
  11. },
  12. '/filespath/resource/': {
  13. target: 'http://jjzh.cc-lotus.info'
  14. }
  15. }
  16. }
  17. }