MCPcopy Create free account
hub / github.com/Hazrat-Ali9/Problem-Solving-Frontend / headers

Function headers

next.config.ts:12–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

10 ignoreDuringBuilds: true,
11 },
12 async headers() {
13 return [
14 {
15 source: "/(.*)", // Match all routes
16 headers: [
17 {
18 key: "Cache-Control",
19 value: "no-store", // Disable caching globally
20 },
21 ],
22 },
23 ];
24 },
25};
26
27export default nextConfig;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected