QuickLook Docs
April 25, 2026 ยท View on GitHub
๐ Getting Started
# Install dependencies
npm install
# Start dev server
npm run docs:dev
# Build for production
npm run docs:build
# Preview production build
npm run docs:preview
๐ File Structure
.
โโโ .github/
โ โโโ ISSUE_TEMPLATE/
โ โ โโโ bug_report.md # Bug report template
โ โ โโโ feature_request.md # Feature request template
โ โ โโโ ui_improvement.md # UI/UX improvement template
โ โโโ workflows/
โ โ โโโ labeler.yml # Auto-label workflow
โ โโโ labeler.yml # Label rules config
โ โโโ PULL_REQUEST_TEMPLATE.md # PR template
โ
โโโ docs/
โ โโโ .vitepress/
โ โ โโโ theme/
โ โ โ โโโ components/
โ โ โ โ โโโ ChangelogViewer.vue # Fetches live changelog from GitHub
โ โ โ โ โโโ FeatureGrid.vue # Features overview grid
โ โ โ โ โโโ FormatTable.vue # Supported file formats table
โ โ โ โ โโโ HomeHero.vue # Homepage hero with stats & CTA
โ โ โ โ โโโ InstallTabs.vue # Installation method tabs
โ โ โ โ โโโ PluginCard.vue # Plugin gallery cards
โ โ โ โ โโโ ShortcutRow.vue # Keyboard shortcuts display
โ โ โ โ โโโ StatsBanner.vue # GitHub stars/forks stats
โ โ โ โโโ composables/
โ โ โ โ โโโ useRelease.ts # Fetches latest GitHub release
โ โ โ โ โโโ useRepoStats.ts # Fetches repo stars & forks
โ โ โ โโโ custom.css # Custom theme styles
โ โ โ โโโ index.ts # Theme entry โ registers components
โ โ โโโ config.ts # VitePress site config
โ โ
โ โโโ features/
โ โ โโโ file-support.md # Supported file formats
โ โ โโโ overview.md # Features overview
โ โ โโโ plugins.md # Plugin system & gallery
โ โ
โ โโโ guide/
โ โ โโโ installation.md # Installation guide
โ โ โโโ introduction.md # What is QuickLook?
โ โ โโโ quick-start.md # Quick start guide
โ โ
โ โโโ resources/
โ โ โโโ changelog.md # Live changelog (fetched from GitHub)
โ โ โโโ requirements.md # System requirements
โ โ โโโ troubleshooting.md # Common issues & fixes
โ โ
โ โโโ public/
โ โ โโโ favicon.ico
โ โ โโโ og-image.png
โ โ โโโ favicon.webp
โ โ โโโ logo.webp
โ โ
โ โโโ index.md # Homepage
โ
โโโ .gitignore
โโโ package.json
โโโ README.md
๐ ๏ธ Tech Stack
| Tool | Purpose | |
|---|---|---|
| VitePress | Static site generator | |
| Vue 3 | Component framework | |
| Tailwind CSS v4 | Utility-first CSS | |
| Sora | UI font | |
| JetBrains Mono | Code font | |
| Vercel | Hosting & deployment |
๐ค Contributing
Contributions are welcome! Please use the appropriate issue template.
| Type | Link |
|---|---|
| ๐ Bug report | Report a bug |
| ๐ก Feature request | Request a feature |
| ๐จ UI improvement | Suggest a UI improvement |