@zeix/ui-element
Version:
UIElement - a HTML-first library for reactive Web Components
25 lines (21 loc) • 591 B
text/typescript
import { join } from 'path'
export const PAGES_DIR = './docs-src/pages'
export const LAYOUT_FILE = './docs-src/layout.html'
export const INCLUDES_DIR = './docs-src/includes'
export const MENU_FILE = join(INCLUDES_DIR, 'menu.html')
export const OUTPUT_DIR = './docs'
// Define the directory for code examples
export const COMPONENTS_DIR = './docs-src/components'
export const FRAGMENTS_DIR = './docs/examples'
// Define a manual order for the menu
export const PAGE_ORDER = [
'index',
'getting-started',
'components',
'styling',
'data-flow',
'examples',
'blog',
'api',
'about',
]