31 lines
478 B
Plaintext
31 lines
478 B
Plaintext
# Ignore everything under src/content, as they are dynamically added from obsidian
|
|
src/content/*
|
|
|
|
# Do not ignore config.ts in src/content since that necessary to import the dynamic content
|
|
!src/content/config.ts
|
|
|
|
# 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
|
|
|
|
# macOS-specific files
|
|
.DS_Store
|
|
|
|
# jetbrains setting folder
|
|
.idea/
|