-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.vercelignore
More file actions
52 lines (40 loc) · 832 Bytes
/
.vercelignore
File metadata and controls
52 lines (40 loc) · 832 Bytes
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
41
42
43
44
45
46
47
48
49
50
51
52
# Vercel Ignore File
# Files/folders listed here will NOT be uploaded to Vercel
# (This is different from .gitignore - datasets are in git ignore but NOT in vercel ignore)
# Node modules (installed during build)
node_modules/
# Development files
*.swp
*.swo
*~
# IDE files
.vscode/
.idea/
# OS files
.DS_Store
Thumbs.db
# Environment files (set via Vercel dashboard)
.env
.env.local
.env.*.local
# Git files
.git/
.gitignore
# Documentation (not needed in production)
DATASETS.md
README-DATASETS.md
CHANGELOG-DATASETS.md
IMPLEMENTATION-SUMMARY.md
README_SECTION.md
# Scripts (not needed in production)
scripts/
# Vercel metadata
.vercel/
# Rust artifacts (if any)
target/
Cargo.lock
# Logs
logs/
*.log
# Note: datasets/ is NOT ignored here
# This means datasets will be deployed to Vercel even though they're not in git