Buckets:
| import type { APIEvent } from "@solidjs/start/server" | |
| import { Resource } from "@opencode-ai/console-resource" | |
| import { cookie, docs, localeFromRequest, tag } from "~/lib/language" | |
| async function handler(evt: APIEvent) { | |
| const req = evt.request.clone() | |
| const url = new URL(req.url) | |
| const locale = localeFromRequest(req) | |
| const host = Resource.App.stage === "production" ? "docs.opencode.ai" : "docs.dev.opencode.ai" | |
| const targetUrl = `https://${host}${docs(locale, url.pathname)}${url.search}` | |
| const headers = new Headers(req.headers) | |
| headers.set("accept-language", tag(locale)) | |
| const response = await fetch(targetUrl, { | |
| method: req.method, | |
| headers, | |
| body: req.body, | |
| }) | |
| const next = new Response(response.body, response) | |
| next.headers.append("set-cookie", cookie(locale)) | |
| return next | |
| } | |
| export const GET = handler | |
| export const POST = handler | |
| export const PUT = handler | |
| export const DELETE = handler | |
| export const OPTIONS = handler | |
| export const PATCH = handler | |
Xet Storage Details
- Size:
- 995 Bytes
- Xet hash:
- 589bfb9e7bc8dbd4b22aefdda64c650f75708dc81f2f1dfee89e7b98e43dcd5e
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.