mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-02 09:33:34 +00:00
10 lines
215 B
TypeScript
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))
|