- add dark theme (nicholai) with high contrast text - add light theme (nicholai-light) matching site design - include Sora + IBM Plex Mono font imports - add contribution graph alpha tokens - remove tracked .fuse_hidden temp files - gitignore .fuse_hidden files going forward
57 lines
676 B
Plaintext
57 lines
676 B
Plaintext
# build output
|
|
dist/
|
|
# generated types
|
|
.astro/
|
|
|
|
# dependencies
|
|
node_modules/
|
|
|
|
# logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
|
|
# environment variables
|
|
.env
|
|
.env.production
|
|
src/utils/.env
|
|
|
|
# macOS-specific files
|
|
.DS_Store
|
|
|
|
# jetbrains setting folder
|
|
.idea/
|
|
|
|
# wrangler files
|
|
.wrangler
|
|
.dev.vars*
|
|
!.dev.vars.example
|
|
!.env.example
|
|
|
|
# rust build artifacts
|
|
worker/target/
|
|
worker/build/
|
|
worker/node_modules/
|
|
|
|
.specstory/**
|
|
.specstory/
|
|
.cursorindexingignore
|
|
|
|
# AGENTS.md symlink
|
|
AGENTS.md
|
|
GEMINI.md
|
|
.playwright-mcp/
|
|
|
|
# IDE and editor directories
|
|
.cursor/
|
|
.vscode/
|
|
|
|
# dev notes and scratch work
|
|
dev/
|
|
|
|
# FUSE filesystem temp files
|
|
.fuse_hidden*
|
|
**/.fuse_hidden*
|