.gitignore for Vite
3 ignore rules for Vite, ready to copy into your repository.
Frontend build tool and dev server
The complete .gitignore for Vite
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-09-17 17:01:12 UTC
# Technologies: Vite
### Vite ###
dist
# Server-side rendering build output
dist-ssr
# Local-only files (e.g. .env.local)
*.local
What these Vite rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
Build output
| Pattern | What it ignores |
|---|---|
dist |
Build output |
dist-ssr |
Server-side rendering build output |
Local env files
| Pattern | What it ignores |
|---|---|
*.local |
Local-only files (e.g. .env.local) |
How to use this .gitignore for Vite
- Copy the Vite rules above, or download the file directly.
- Create a file named .gitignore at the root of your Git repository and paste the rules into it.
- If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
- Commit the .gitignore so everyone on the team shares the same rules.