@quasarbright/projection
Version:
A static site generator that creates a beautiful, interactive gallery to showcase your coding projects. Features search, filtering, tags, responsive design, and an admin UI.
20 lines • 622 B
TypeScript
/**
* Type definitions for the admin server
*/
export { Project, ProjectsData, Config } from '../../types';
/**
* Configuration options for the admin server
*/
export interface AdminServerConfig {
/** Port number for the admin server (default: 3000) */
port: number;
/** Path to the projects data file (YAML or JSON) */
projectsFilePath: string;
/** Optional path to the config file */
configFilePath?: string;
/** Whether to automatically open browser on server start */
autoOpen: boolean;
/** Enable CORS for development */
cors: boolean;
}
//# sourceMappingURL=types.d.ts.map