64 lines
837 B
Plaintext
64 lines
837 B
Plaintext
# ---> Vue
|
|
# gitignore template for Vue.js projects
|
|
#
|
|
# Recommended template: Node.gitignore
|
|
|
|
# TODO: where does this rule come from?
|
|
docs/_book
|
|
|
|
# TODO: where does this rule come from?
|
|
test/
|
|
|
|
#Custom additions
|
|
|
|
# Node
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-lock.yaml
|
|
|
|
# Quasar build
|
|
/dist/
|
|
/.ssr-dist/
|
|
/.dev-dist/
|
|
/.eslintrc-auto-import.json
|
|
/.quasar/
|
|
|
|
# Capacitor native platforms
|
|
/android/
|
|
/ios/
|
|
/capacitor.config.ts
|
|
capacitor.config.json
|
|
capacitor.config.js
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
|
|
# Linux
|
|
*~
|
|
|
|
# Environment variables and local secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Optional: Ignore compiled assets (if using TypeScript)
|
|
*.tsbuildinfo
|
|
|
|
# Optional: ignore coverage files (if using testing tools)
|
|
coverage/
|