41 lines
319 B
Plaintext
41 lines
319 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Dependencies
|
|
node_modules
|
|
npm-debug.log
|
|
yarn-error.log
|
|
pnpm-debug.log
|
|
|
|
# Build output
|
|
.nuxt
|
|
dist
|
|
.output
|
|
build
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# OS
|
|
Thumbs.db
|
|
|
|
# Tests
|
|
coverage
|
|
.nyc_output
|
|
|
|
# Documentation
|
|
README.md
|
|
docs
|