-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
40 lines (35 loc) · 3.06 KB
/
.gitignore
File metadata and controls
40 lines (35 loc) · 3.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# ─────────────────────────────────────────────────────────────────────────────
# Environment variables — NEVER commit these
# ─────────────────────────────────────────────────────────────────────────────
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# ─────────────────────────────────────────────────────────────────────────────
# Dependencies
# ─────────────────────────────────────────────────────────────────────────────
node_modules/
# ─────────────────────────────────────────────────────────────────────────────
# Next.js build output
# ─────────────────────────────────────────────────────────────────────────────
.next/
out/
# ─────────────────────────────────────────────────────────────────────────────
# OS files
# ─────────────────────────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
# ─────────────────────────────────────────────────────────────────────────────
# Logs
# ─────────────────────────────────────────────────────────────────────────────
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# ─────────────────────────────────────────────────────────────────────────────
# Editor directories
# ─────────────────────────────────────────────────────────────────────────────
.idea/
.vscode/
*.swp
*.swo