firebase.json 409 B

1234567891011121314151617181920212223
  1. {
  2. "hosting": {
  3. "public": "build/web",
  4. "ignore": [
  5. "firebase.json",
  6. "**/.*",
  7. "**/node_modules/**"
  8. ],
  9. "rewrites": [
  10. {
  11. "source": "**",
  12. "destination": "/index.html"
  13. }
  14. ],
  15. "headers": [ {
  16. "source": "**/*.@(png|jpg|jpeg|gif)",
  17. "headers": [ {
  18. "key": "Access-Control-Allow-Origin",
  19. "value": "*"
  20. } ]
  21. } ]
  22. }
  23. }