| { | |
| "buildCommand": "npm run build", | |
| "outputDirectory": ".next", | |
| "framework": "nextjs", | |
| "installCommand": "npm install", | |
| "headers": [ | |
| { | |
| "source": "/(.*)", | |
| "headers": [ | |
| { | |
| "key": "X-Content-Type-Options", | |
| "value": "nosniff" | |
| }, | |
| { | |
| "key": "X-Frame-Options", | |
| "value": "DENY" | |
| }, | |
| { | |
| "key": "X-XSS-Protection", | |
| "value": "1; mode=block" | |
| }, | |
| { | |
| "key": "Referrer-Policy", | |
| "value": "strict-origin-when-cross-origin" | |
| }, | |
| { | |
| "key": "Permissions-Policy", | |
| "value": "camera=(), microphone=(), geolocation=()" | |
| } | |
| ] | |
| } | |
| ], | |
| "rewrites": [ | |
| { | |
| "source": "/api/:path*", | |
| "destination": "https://ammaraak-todo-app-backend.hf.space/api/:path*" | |
| } | |
| ] | |
| } | |