This commit is contained in:
toom1996
2025-07-09 17:33:41 +08:00
parent 46ad420309
commit 92e543ecff
64 changed files with 15946 additions and 15 deletions

12
utils/config.ts Normal file
View File

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