.gitignore
If you are using Git to manage your project, you can use a .gitignore
file to ignore files that you don't want to be tracked by Git.
Some common files to ignore in a MarkBind project are:
node_modules
The following is a sample .gitignore
file for typical MarkBind projects:
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
_markbind/logs/
# Dependency directories
node_modules/
# Production build files (change if you output the build to a different directory)
_site/
# Env
.env
.env.local
# IDE configs
.vscode/
.idea/*
*.iml