opencode/packages/www/script/prepare-cloudflare.ts
2026-07-25 21:17:25 -04:00

10 lines
215 B
TypeScript

export {}
const path = "dist/server/wrangler.json"
const config = await Bun.file(path).json()
delete config.kv_namespaces
delete config.images
delete config.previews
await Bun.write(path, JSON.stringify(config))