cloudflare/vinext
Publicmirrored from https://github.com/cloudflare/vinextAvailable
.gitignore
29lines · modecode
| 1 | node_modules/ |
| 2 | dist/ |
| 3 | out/ |
| 4 | *.tsbuildinfo |
| 5 | .vite/ |
| 6 | .turbo/ |
| 7 | .ecosystem-test/ |
| 8 | .next/ |
| 9 | .wrangler/ |
| 10 | test-results/ |
| 11 | playwright-report/ |
| 12 | |
| 13 | # Environment + secrets |
| 14 | .env |
| 15 | .env.* |
| 16 | !.env.example |
| 17 | |
| 18 | # Logs / coverage |
| 19 | *.log |
| 20 | npm-debug.log* |
| 21 | yarn-debug.log* |
| 22 | yarn-error.log* |
| 23 | pnpm-debug.log* |
| 24 | coverage/ |
| 25 | |
| 26 | # OS / editor |
| 27 | .DS_Store |
| 28 | .idea/ |
| 29 | .vscode/ |
| 30 | |