feat: update api

This commit is contained in:
tim
2025-07-12 11:17:45 +08:00
parent 46b474c66a
commit 26e1028e4e
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
export async function onRequest({ request }) {
const url = new URL(request.url)
url.hostname = '129.204.254.110'
url.port = '8080'
url.protocol = 'http:'
// 直接透传:不区分 user/category
return fetch(url, request)
}