proxy.config.json 628 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "/api/*": {
  3. "target": "http://localhost:3000",
  4. "secure": false,
  5. "logLevel": "debug"
  6. },
  7. "/napi/*": {
  8. "target": "http://localhost:3000",
  9. "secure": false,
  10. "logLevel": "debug"
  11. },
  12. "/static/*": {
  13. "target": "http://localhost:3000",
  14. "secure": false,
  15. "logLevel": "debug"
  16. },
  17. "/thumbs/*": {
  18. "target": "http://localhost:3000",
  19. "secure": false,
  20. "logLevel": "debug"
  21. },
  22. "/zips/*": {
  23. "target": "http://localhost:3000",
  24. "secure": false,
  25. "logLevel": "debug"
  26. },
  27. "/res/*": {
  28. "target": "http://localhost:3000",
  29. "secure": false,
  30. "logLevel": "debug"
  31. }
  32. }