2024-11-11 19:31:40 +08:00
|
|
|
|
// File path: /d:/data/echoes/frontend/types/context.ts
|
|
|
|
|
/**
|
|
|
|
|
* 应用程序上下文配置接口
|
|
|
|
|
*
|
|
|
|
|
* 此接口定义了应用程序的上下文配置,包括API基础URL、主题、插件和资源目录的路径。
|
|
|
|
|
*/
|
|
|
|
|
export interface AppContext {
|
2024-11-12 20:25:43 +08:00
|
|
|
|
blogType:boolean; //用于判断是动态博客还是静态博客
|
2024-11-11 19:31:40 +08:00
|
|
|
|
apiBaseUrl: string; // 用于访问API的基础URL
|
|
|
|
|
themesPath: string; // 存储主题文件的目录路径
|
|
|
|
|
pluginsPath: string; // 存储插件文件的目录路径
|
|
|
|
|
assetsPath: string; // 存储静态资源的目录路径
|
|
|
|
|
}
|