MCPcopy Create free account
hub / github.com/codeaashu/claude-code / headers

Function headers

web/next.config.ts:25–40  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

23
24 // Static asset caching headers
25 async headers() {
26 return [
27 {
28 source: "/_next/static/:path*",
29 headers: [
30 { key: "Cache-Control", value: "public, max-age=31536000, immutable" },
31 ],
32 },
33 {
34 source: "/fonts/:path*",
35 headers: [
36 { key: "Cache-Control", value: "public, max-age=31536000, immutable" },
37 ],
38 },
39 ];
40 },
41
42 webpack(config, { isServer }) {
43 // Web Worker support

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected