vercel.json 652 B

1234567891011121314151617181920212223242526272829
  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. "functions": {
  25. "app/api/**/*.js": {
  26. "runtime": "nodejs18.x"
  27. }
  28. }
  29. }