Add runtime configuration loader and styles for web application

This commit is contained in:
shuaiplus
2026-02-27 01:56:32 +08:00
committed by Shuai
parent bda0cba1c6
commit c4c25efc50
8 changed files with 49 additions and 58 deletions
-9
View File
@@ -1,9 +0,0 @@
import { Env } from '../types';
import { htmlResponse } from '../utils/response';
import { renderWebClientHTML } from '../webclient/page';
export async function handleWebClientPage(request: Request, env: Env): Promise<Response> {
void request;
void env;
return htmlResponse(renderWebClientHTML());
}