mirror of
https://github.com/aljazceru/opencode.git
synced 2026-01-05 00:44:54 +01:00
21 lines
547 B
TypeScript
21 lines
547 B
TypeScript
import type { APIEvent } from "@solidjs/start/server"
|
|
|
|
async function handler(evt: APIEvent) {
|
|
const req = evt.request.clone()
|
|
const url = new URL(req.url)
|
|
const targetUrl = `https://docs.opencode.ai${url.pathname}${url.search}`
|
|
const response = await fetch(targetUrl, {
|
|
method: req.method,
|
|
headers: req.headers,
|
|
body: req.body,
|
|
})
|
|
return response
|
|
}
|
|
|
|
export const GET = handler
|
|
export const POST = handler
|
|
export const PUT = handler
|
|
export const DELETE = handler
|
|
export const OPTIONS = handler
|
|
export const PATCH = handler
|