Advertisement
Guest User

firebase pwa

a guest
Apr 24th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. {
  2. "hosting": {
  3. "public": "www",
  4. "ignore": [
  5. "firebase.json",
  6. "**/.*",
  7. "**/node_modules/**"
  8. ],
  9. "rewrites": [
  10. {
  11. "source": "**",
  12. "destination": "/index.html"
  13. }
  14. ],
  15. "headers": [
  16. {
  17. "source": "/build/app/**",
  18. "headers": [
  19. {
  20. "key": "Cache-Control",
  21. "value": "public, max-age=31536000"
  22. }
  23. ]
  24. },
  25. {
  26. "source": "sw.js",
  27. "headers": [
  28. {
  29. "key": "Cache-Control",
  30. "value": "no-cache"
  31. }
  32. ]
  33. }
  34. ]
  35. }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement