Details: C3 = create-cloudflare@2.62.0 project name = anum-frontend framework = react-router framework cli = create-react-router@7.9.6 package manager = pnpm@10.26.1 wrangler = wrangler@4.57.0 git = 2.52.0
37 lines
No EOL
1.2 KiB
JSON
37 lines
No EOL
1.2 KiB
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": "anum-frontend",
|
|
"compatibility_date": "2025-04-04",
|
|
"main": "./workers/app.ts",
|
|
"vars": {
|
|
"VALUE_FROM_CLOUDFLARE": "Hello from Cloudflare"
|
|
},
|
|
"observability": {
|
|
"enabled": true
|
|
}
|
|
/**
|
|
* Smart Placement
|
|
* https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement
|
|
*/
|
|
// "placement": { "mode": "smart" }
|
|
/**
|
|
* Bindings
|
|
* Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including
|
|
* databases, object storage, AI inference, real-time communication and more.
|
|
* https://developers.cloudflare.com/workers/runtime-apis/bindings/
|
|
*/
|
|
/**
|
|
* Static Assets
|
|
* https://developers.cloudflare.com/workers/static-assets/binding/
|
|
*/
|
|
// "assets": { "directory": "./public/", "binding": "ASSETS" }
|
|
/**
|
|
* Service Bindings (communicate between multiple Workers)
|
|
* https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
|
|
*/
|
|
// "services": [ { "binding": "MY_SERVICE", "service": "my-service" } ]
|
|
} |