21 lines
446 B
JSON
21 lines
446 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",
|
|
"main": "./.output/server/index.mjs",
|
|
/**
|
|
* Static Assets Binding
|
|
*/
|
|
"assets": {
|
|
"binding": "ASSETS",
|
|
"directory": "./.output/public/"
|
|
},
|
|
/**
|
|
* Observability & Analytics
|
|
*/
|
|
"observability": {
|
|
"enabled": true
|
|
},
|
|
} |