GIS演示系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
312B

  1. module.exports = {
  2. lintOnSave:false,
  3. devServer: {
  4. proxy: {
  5. '/api': {
  6. target: 'http://gisvector.yunhengzhizao.cn:8080/geoserver/demo/wms',
  7. ws: true,
  8. changeOrigin: true,
  9. pathRewrite: {
  10. '^/api': ''
  11. }
  12. },
  13. }
  14. }
  15. }