vercel.json 551 B

123456789101112131415161718192021222324
  1. {
  2. "buildCommand": "npm run build",
  3. "outputDirectory": "dist",
  4. "framework": "vite",
  5. "installCommand": "npm install",
  6. "devCommand": "npm run dev",
  7. "rewrites": [
  8. {
  9. "source": "/(.*)",
  10. "destination": "/index.html"
  11. }
  12. ],
  13. "headers": [
  14. {
  15. "source": "/assets/(.*)",
  16. "headers": [
  17. {
  18. "key": "Cache-Control",
  19. "value": "public, max-age=31536000, immutable"
  20. }
  21. ]
  22. }
  23. ]
  24. }