Files
vobao/utils/config.ts
toom1996 e2fa2c4378 update
2025-08-04 11:04:37 +08:00

12 lines
232 B
TypeScript

import type { IWebsiteConfig } from "./rpc";
export function getConfig(Astro: any):IWebsiteConfig
{
return Astro.locals.template_config;
}
// 取默认的配置
export function getExtra(extraTag: string = '')
{
return {}
}