vue.config.js 611 B

1234567891011121314151617181920212223242526272829
  1. module.exports = {
  2. publicPath: '/www',
  3. productionSourceMap: false,
  4. devServer: {
  5. port: 18080,
  6. proxy: {
  7. '/api/': {
  8. target: 'http://skl.cc-lotus.info'
  9. // target: 'http://127.0.0.1:18090'
  10. },
  11. '/upload/': {
  12. // target: 'http://127.0.0.1:9002'
  13. target: 'http://skl.cc-lotus.info'
  14. },
  15. '/ewebeditor/': {
  16. // target: 'http://127.0.0.1:9002'
  17. target: 'http://skl.cc-lotus.info'
  18. }
  19. }
  20. },
  21. configureWebpack: {
  22. resolve: {
  23. alias: {
  24. '@components': '/src/components',
  25. '@lib': '/lib'
  26. }
  27. }
  28. }
  29. };