| 123456789101112131415161718192021222324 |
- {
- "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"
- }
- ]
- }
- ]
- }
|