craco.config.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. const CracoLessPlugin = require("craco-less");
  2. module.exports = {
  3. devServer: {
  4. proxy: {
  5. "/api": {
  6. target: "http://localhost:8000",
  7. changeOrigin: true,
  8. },
  9. "/swagger": {
  10. target: "http://localhost:8000",
  11. changeOrigin: true,
  12. },
  13. "/files": {
  14. target: "http://localhost:8000",
  15. changeOrigin: true,
  16. },
  17. "/.well-known/openid-configuration": {
  18. target: "http://localhost:8000",
  19. changeOrigin: true,
  20. },
  21. "/cas/serviceValidate": {
  22. target: "http://localhost:8000",
  23. changeOrigin: true,
  24. },
  25. "/cas/proxyValidate": {
  26. target: "http://localhost:8000",
  27. changeOrigin: true,
  28. },
  29. "/cas/proxy": {
  30. target: "http://localhost:8000",
  31. changeOrigin: true,
  32. },
  33. "/cas/validate": {
  34. target: "http://localhost:8000",
  35. changeOrigin: true,
  36. },
  37. },
  38. },
  39. plugins: [
  40. {
  41. plugin: CracoLessPlugin,
  42. options: {
  43. lessLoaderOptions: {
  44. lessOptions: {
  45. modifyVars: {"@primary-color": "rgb(89,54,213)", "@border-radius-base": "5px"},
  46. javascriptEnabled: true,
  47. },
  48. },
  49. },
  50. },
  51. ],
  52. };