19 lines
475 B
JSON
19 lines
475 B
JSON
/**
|
|
* For more details on how to configure Wrangler, refer to:
|
|
* https://developers.cloudflare.com/workers/wrangler/configuration/
|
|
*/
|
|
{
|
|
"$schema": "node_modules/wrangler/config-schema.json",
|
|
"name": "next",
|
|
"main": ".open-next/worker.js",
|
|
"compatibility_date": "2025-11-06",
|
|
"compatibility_flags": ["nodejs_compat", "global_fetch_strictly_public"],
|
|
"assets": {
|
|
"binding": "ASSETS",
|
|
"directory": ".open-next/assets"
|
|
},
|
|
"observability": {
|
|
"enabled": true
|
|
}
|
|
}
|