Skip to content

Commit

Permalink
add gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
jason810496 committed Dec 17, 2023
1 parent cf2c930 commit 1ccb629
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Ignore dependencies
/node_modules

# Ignore build output
/dist

# Ignore environment variables
.env.local
.env.development.local
.env.test.local
.env.production.local

# Ignore editor and IDE files
.idea
.vscode
*.sublime-project
*.sublime-workspace

# Ignore logs and cache files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnp
.pnp.js

# Ignore OS generated files
.DS_Store
Thumbs.db

# yarn
yarn.lock

0 comments on commit 1ccb629

Please sign in to comment.