Add wrangler configuration for deployment of the Autumn project

This commit is contained in:
2026-06-23 06:25:01 -07:00
parent 82ab37891f
commit 6e9452ecfc
2 changed files with 22 additions and 1 deletions

File diff suppressed because one or more lines are too long

21
vite/wrangler.jsonc Normal file
View File

@@ -0,0 +1,21 @@
{
"$schema": "./node_modules/wrangler/config-schema.json",
"name": "autumn",
"account_id": "67720b647ff2b55cf37ba3ef9e677083",
"compatibility_date": "2026-06-23",
"assets": {
"directory": "./dist",
"not_found_handling": "single-page-application"
},
"vars": {
"VITE_APP_ENV": "prod",
"VITE_FRONTEND_URL": "https://autumn.bowong.ai",
"VITE_BACKEND_URL": "https://autumn-api.bowong.cc"
},
"routes": [
{
"pattern": "autumn.bowong.ai",
"custom_domain": true
}
]
}