ngsw-config.json 620 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. "/favicon.ico",
  11. "/index.html",
  12. "/manifest.webmanifest",
  13. "/*.css",
  14. "/*.js"
  15. ]
  16. }
  17. }, {
  18. "name": "assets",
  19. "installMode": "lazy",
  20. "updateMode": "prefetch",
  21. "resources": {
  22. "files": [
  23. "/assets/**",
  24. "/*.(eot|svg|cur|jpg|png|webp|gif|otf|ttf|woff|woff2|ani)"
  25. ]
  26. }
  27. }
  28. ]
  29. }