Files
shared-memory/apps/web/next.config.ts
T

21 lines
394 B
TypeScript
Raw Normal View History

import type { NextConfig } from "next";
const config: NextConfig = {
output: "standalone",
reactStrictMode: true,
poweredByHeader: false,
serverExternalPackages: ["postgres"],
async headers() {
return [
{
source: "/api/mcp/:path*",
headers: [
{ key: "Cache-Control", value: "no-store" },
],
},
];
},
};
export default config;