This commit is contained in:
maropboia 2024-05-03 11:38:21 +06:00
parent a5f78d41ef
commit b8cbc9de4e

20
.gitignore vendored
View file

@ -1,10 +1,30 @@
# This line ignores the entire .vitepress/dist directory and its contents
**/.vitepress/dist **/.vitepress/dist
# This line ignores the entire .vitepress/cache directory and its contents
**/.vitepress/cache **/.vitepress/cache
# This line ignores the node_modules directory and its contents
node_modules node_modules
# These lines ignore any files ending with .log
*.log* *.log*
# This line ignores the .nitro directory and its contents
.nitro .nitro
# This line ignores the .cache directory and its contents
.cache .cache
# This line ignores the .output directory and its contents
.output .output
# This line ignores the .env file
.env .env
# This line ignores the dist directory and its contents
dist dist
# This line ignores the .eslintcache file
.eslintcache .eslintcache