diff options
| author | bndw <benjamindwoodward@gmail.com> | 2020-05-30 10:15:45 -0700 |
|---|---|---|
| committer | bndw <benjamindwoodward@gmail.com> | 2020-05-30 10:15:45 -0700 |
| commit | e177a74c9ea505284c8debf086f785a43d88f90b (patch) | |
| tree | b740f156a74c37bdfeae29b39617ca6a25307e8f /.gitignore | |
Initialize project using Create React App
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4d29575 --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
| 2 | |||
| 3 | # dependencies | ||
| 4 | /node_modules | ||
| 5 | /.pnp | ||
| 6 | .pnp.js | ||
| 7 | |||
| 8 | # testing | ||
| 9 | /coverage | ||
| 10 | |||
| 11 | # production | ||
| 12 | /build | ||
| 13 | |||
| 14 | # misc | ||
| 15 | .DS_Store | ||
| 16 | .env.local | ||
| 17 | .env.development.local | ||
| 18 | .env.test.local | ||
| 19 | .env.production.local | ||
| 20 | |||
| 21 | npm-debug.log* | ||
| 22 | yarn-debug.log* | ||
| 23 | yarn-error.log* | ||
