Files
twitch-cloud-ebs/wrangler.jsonc
T
sugoidogo 8c5ef76367
Docker / build (push) Failing after 4m11s
npm packaging and gitea publishing
2025-12-15 23:02:51 -08:00

40 lines
897 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": "twitch-cloud-ebs",
"main": "src/index.ts",
"compatibility_date": "2025-10-14",
"workers_dev": false,
"preview_urls": false,
"compatibility_flags": [
"global_fetch_strictly_public"
],
"assets": {
"directory": "./static"
},
"observability": {
"enabled": true
},
"placement": {
"mode": "smart"
},
"kv_namespaces": [
{
"binding": "client_secrets",
"id": "bacfae340a2d45428ba085a00773ba99"
}
],
"r2_buckets": [
{
"binding": "storage",
"bucket_name": "sugoi-web-services",
"jurisdiction": "eu"
}
],
"build": {
"command": "tsc -p static_src/ && esbuild static_src/*.ts --outdir=static --bundle --format=esm --minify --sourcemap --target=es2020"
}
}