We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4809a9 commit 24f1a95Copy full SHA for 24f1a95
dev-packages/e2e-tests/test-applications/nextjs-14/app/request-instrumentation/page.tsx
@@ -3,7 +3,7 @@ import http from 'http';
3
export const dynamic = 'force-dynamic';
4
5
export default async function Page() {
6
- await fetch('http://example.com/');
+ await fetch('http://example.com/', { cache: 'no-cache' });
7
await new Promise<void>(resolve => {
8
http.get('http://example.com/', () => {
9
resolve();
0 commit comments