@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.
24 lines • 679 B
TypeScript
/**
* Configuration options for the portfolio generator
*/
export interface Config {
/** Site title */
title: string;
/** Site description */
description: string;
/** Base URL for path resolution */
baseUrl: string;
/** Array of background iframe URLs for dynamic backgrounds */
dynamicBackgrounds?: string[];
/** Path to custom styles directory */
customStyles?: string;
/** Path to custom scripts directory */
customScripts?: string;
/** Output directory path (default: dist) */
output?: string;
}
/**
* Default configuration values
*/
export declare const DEFAULT_CONFIG: Config;
//# sourceMappingURL=config.d.ts.map