()
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected