ngsw-config.json.template 672 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "$schema": "<%= relativePathToWorkspaceRoot %>/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. "/favicon.ico",
  11. "/index.csr.html",
  12. "/index.html",
  13. "/manifest.webmanifest",
  14. "/*.css",
  15. "/*.js"
  16. ]
  17. }
  18. },
  19. {
  20. "name": "assets",
  21. "installMode": "lazy",
  22. "updateMode": "prefetch",
  23. "resources": {
  24. "files": [
  25. "/**/*.(svg|cur|jpg|jpeg|png|apng|webp|avif|gif|otf|ttf|woff|woff2)"
  26. ]
  27. }
  28. }
  29. ]
  30. }