Files
huoerguosifeichi/utils/config.ts
toom1996 92e543ecff update
2025-07-09 17:33:41 +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 {}
}