()
| 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 | |
| 27 | export default nextConfig; |
nothing calls this directly
no outgoing calls
no test coverage detected