๐Ÿ“ฆ cloudflare / vinext

๐Ÿ“„ page.tsx ยท 16 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16// Tests that all route segment configs are recognized without errors
export const dynamic = "auto";
export const fetchCache = "auto";
export const maxDuration = 30;
export const preferredRegion = "auto";
export const runtime = "nodejs";

export default function ConfigTestPage() {
  return (
    <div data-testid="config-test-page">
      <h1>Config Test Page</h1>
      <p>All route segment configs are recognized.</p>
    </div>
  );
}