echoes/frontend/types/context.ts

13 lines
563 B
TypeScript
Raw Normal View History

// File path: /d:/data/echoes/frontend/types/context.ts
/**
*
*
* API基础URL
*/
export interface AppContext {
blogType:boolean; //用于判断是动态博客还是静态博客
apiBaseUrl: string; // 用于访问API的基础URL
themesPath: string; // 存储主题文件的目录路径
pluginsPath: string; // 存储插件文件的目录路径
assetsPath: string; // 存储静态资源的目录路径
}