lume/.gitignore

39 lines
381 B
Plaintext
Raw Permalink Normal View History

2023-12-25 14:28:39 +07:00
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# Dependencies
node_modules
.pnp
.pnp.js
# Local env files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Testing
2024-01-25 14:49:53 +03:00
coverage/
2023-12-25 14:28:39 +07:00
# Turbo
2024-01-25 14:49:53 +03:00
.turbo/
2023-12-25 14:28:39 +07:00
# Vercel
2024-01-25 14:49:53 +03:00
.vercel/
2023-12-25 14:28:39 +07:00
# Build Outputs
.next/
out/
2024-01-25 14:49:53 +03:00
build/
dist/
2023-12-25 14:28:39 +07:00
# Debug
2024-02-06 09:15:20 +07:00
*.log.*
2023-02-21 14:58:47 +07:00
2023-12-25 14:28:39 +07:00
# Misc
2023-02-21 14:58:47 +07:00
.DS_Store
2023-12-25 14:28:39 +07:00
*.pem
2024-02-01 12:54:25 +07:00
.vscode/
2024-06-24 10:06:12 +07:00
.idea/