text
27 lines
350 Bytes
| 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. |
| 2 | |
| 3 | # firebase |
| 4 | .firebase/* |
| 5 | |
| 6 | # dependencies |
| 7 | /node_modules |
| 8 | /.pnp |
| 9 | .pnp.js |
| 10 | |
| 11 | # testing |
| 12 | /coverage |
| 13 | |
| 14 | # production |
| 15 | /build |
| 16 | /server/build/* |
| 17 | |
| 18 | # misc |
| 19 | .DS_Store |
| 20 | .env.local |
| 21 | .env.development.local |
| 22 | .env.test.local |
| 23 | .env.production.local |
| 24 | |
| 25 | npm-debug.log* |
| 26 | yarn-debug.log* |
| 27 | yarn-error.log* |