prepare-cloudflare.ts 215 B

12345678910
  1. export {}
  2. const path = "dist/server/wrangler.json"
  3. const config = await Bun.file(path).json()
  4. delete config.kv_namespaces
  5. delete config.images
  6. delete config.previews
  7. await Bun.write(path, JSON.stringify(config))