ngsw-config.json 603 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "$schema": "../node_modules/@angular/service-worker/config/schema.json",
  3. "index": "/index.html",
  4. "assetGroups": [
  5. {
  6. "name": "app",
  7. "installMode": "prefetch",
  8. "resources": {
  9. "files": [
  10. "/index.html",
  11. "/client/assets/images/icons/favicon.png",
  12. "/client/*.css",
  13. "/client/*.js",
  14. "/manifest.webmanifest"
  15. ]
  16. }
  17. },
  18. {
  19. "name": "assets",
  20. "installMode": "lazy",
  21. "updateMode": "prefetch",
  22. "resources": {
  23. "files": [
  24. "/client/assets/**"
  25. ]
  26. }
  27. }
  28. ]
  29. }