feat: add caching headers for models, update viewport meta tag, and enhance error handling; improve flight tracker layout and status bar styling

This commit is contained in:
Kewonit
2026-02-15 01:34:44 +05:30
parent fdbc604919
commit 3b431e2c8d
8 changed files with 96 additions and 39 deletions

View File

@ -34,6 +34,15 @@ const nextConfig: NextConfig = {
source: "/api/:path*",
headers: [{ key: "Cache-Control", value: "no-store, max-age=0" }],
},
{
source: "/models/:path*",
headers: [
{
key: "Cache-Control",
value: "public, max-age=31536000, immutable",
},
],
},
];
},
};