mirror of https://github.com/buster-so/buster.git
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
{
|
|
"$schema": "node_modules/wrangler/config-schema.json",
|
|
"name": "web",
|
|
"main": "./.output/server/index.mjs",
|
|
"compatibility_date": "2025-09-02", //Happy birthday to Nate 🎉
|
|
"compatibility_flags": ["nodejs_compat", "no_nodejs_compat_v2"],
|
|
|
|
"assets": {
|
|
"directory": ".output/public"
|
|
},
|
|
|
|
"observability": {
|
|
"enabled": true
|
|
},
|
|
|
|
"env": {
|
|
// Development Environment
|
|
"dev": {
|
|
"name": "web-dev",
|
|
"vars": {
|
|
// Development-specific variables can be set here
|
|
// Or loaded from .env.dev file
|
|
}
|
|
},
|
|
|
|
// Staging Environment
|
|
"staging": {
|
|
"name": "web-staging",
|
|
"routes": [],
|
|
"vars": {
|
|
// Staging-specific variables can be set here
|
|
// Or loaded from .env.staging file
|
|
}
|
|
},
|
|
|
|
// Production Environment
|
|
"production": {
|
|
"name": "web-production",
|
|
"routes": [],
|
|
"vars": {
|
|
// Production-specific variables can be set here
|
|
// Or loaded from .env.production file
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|