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.
global_fetch_strictly_public
1 parent d7566e4 commit 9aaefd0Copy full SHA for 9aaefd0
pages/cloudflare/get-started.mdx
@@ -50,7 +50,14 @@ You can create one yourself in the root directory of your Next.js app with the n
50
"main": ".open-next/worker.js",
51
"name": "my-app",
52
"compatibility_date": "2024-12-30",
53
- "compatibility_flags": ["nodejs_compat"],
+ "compatibility_flags": [
54
+ // Enable Node.js API
55
+ // see https://developers.cloudflare.com/workers/configuration/compatibility-flags/#nodejs-compatibility-flag
56
+ "nodejs_compat",
57
+ // Allow to fetch URLs in your app
58
+ // see https://developers.cloudflare.com/workers/configuration/compatibility-flags/#global-fetch-strictly-public
59
+ "global_fetch_strictly_public",
60
+ ],
61
"assets": {
62
"directory": ".open-next/assets",
63
"binding": "ASSETS",
0 commit comments