35 lines
406 B
Plaintext
35 lines
406 B
Plaintext
# Ignore build output directories
|
|
.nuxt/
|
|
dist/
|
|
lib/
|
|
|
|
# Ignore node modules
|
|
node_modules/
|
|
|
|
# Ignore specific configuration files
|
|
*.config.js
|
|
|
|
# Ignore environment variables files
|
|
.env
|
|
.env.*
|
|
|
|
# Ignore lock files
|
|
yarn.lock
|
|
package-lock.json
|
|
|
|
# Ignore logs
|
|
*.log
|
|
|
|
# Ignore compiled files
|
|
*.min.js
|
|
*.min.css
|
|
|
|
# Ignore specific file types
|
|
*.png
|
|
*.jpg
|
|
*.jpeg
|
|
*.gif
|
|
*.svg
|
|
|
|
# Ignore other generated files
|
|
coverage/ |