buster/apps/web-tss/wrangler.jsonc

45 lines
988 B
Plaintext

{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "web-tss",
"main": "./.output/server/index.mjs",
"compatibility_date": "2025-09-02",
"compatibility_flags": ["nodejs_compat", "no_nodejs_compat_v2"],
"assets": {
"directory": ".output/public"
},
"observability": {
"enabled": true
},
"env": {
// Development Environment
"dev": {
"name": "web-tss-dev",
"vars": {
// Development-specific variables can be set here
// Or loaded from .env.dev file
}
},
// Staging Environment
"staging": {
"name": "web-tss-staging",
"vars": {
// Staging-specific variables can be set here
// Or loaded from .env.staging file
}
},
// Production Environment
"production": {
"name": "web-tss-production",
"vars": {
// Production-specific variables can be set here
// Or loaded from .env.production file
}
}
}
}