| 1234567891011121314151617181920212223242526272829 |
- {
- "buildCommand": "npm run build",
- "outputDirectory": "dist",
- "framework": "vite",
- "installCommand": "npm install",
- "devCommand": "npm run dev",
- "rewrites": [
- {
- "source": "/(.*)",
- "destination": "/index.html"
- }
- ],
- "headers": [
- {
- "source": "/assets/(.*)",
- "headers": [
- {
- "key": "Cache-Control",
- "value": "public, max-age=31536000, immutable"
- }
- ]
- }
- ],
- "functions": {
- "app/api/**/*.js": {
- "runtime": "nodejs18.x"
- }
- }
- }
|