fix(guides): add stub GUIDES export so build passes

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-10 18:51:01 +02:00
parent a8da25c931
commit 3e812e8da7

View file

@ -21,3 +21,7 @@ export type {
export { GUIDE_CATEGORIES, DIFFICULTY_LABELS } from './types';
export { guideTable, sectionTable, stepTable, runTable, GUIDES_GUEST_SEED } from './collections';
// TODO: GUIDES should be populated from a content source (static JSON, CMS, or DB).
// For now export an empty array so the /guides route renders without crashing the build.
export const GUIDES: Guide[] = [];