deskripsi:
- fix next.config.
- penambahan force-dynamic
- new route: src/app/api/user/id/
No Issuee
This commit is contained in:
2025-05-22 15:40:09 +08:00
parent 37fb25715e
commit 1d04b05fe7
5 changed files with 91 additions and 10 deletions

View File

@@ -4,10 +4,24 @@ const nextConfig = {
experimental: {
serverActions: true,
},
// output: "standalone",
output: "standalone",
// eslint: {
// ignoreDuringBuilds: true,
// },
async headers() {
return [
{
source: "/(.*)",
headers: [
{
key: "Cache-Control",
value: "no-store, max-age=0",
},
],
},
];
},
};
module.exports = nextConfig;