mirror of
https://github.com/beilunyang/moemail.git
synced 2026-05-11 18:11:27 +08:00
12 lines
298 B
TypeScript
12 lines
298 B
TypeScript
import { getRequestContext } from "@cloudflare/next-on-pages"
|
|
|
|
export const runtime = "edge"
|
|
|
|
export async function GET() {
|
|
const env = getRequestContext().env
|
|
const adminContact = await env.SITE_CONFIG.get("ADMIN_CONTACT")
|
|
|
|
return Response.json({
|
|
adminContact: adminContact || ""
|
|
})
|
|
}
|