Files
lanyu/utils/config.ts
toom1996 47b5625128 update
2025-08-18 17:34:33 +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 {}
}