firebase.json 260 B

1234567891011121314
  1. {
  2. "hosting": {
  3. "public": "dist",
  4. "rewrites": [
  5. { "source": "/api/**", "function": "api" },
  6. {
  7. "source": "**",
  8. "destination": "/index.html"
  9. }
  10. ],
  11. "ignore": ["firebase.json", "**/.*", "**/node_modules/**"]
  12. }
  13. }