返回 AiToEarn
.gitignore
根目录 / project / aitoearn-web / .gitignore
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 .yarn/install-state.gz
8
9 # testing
10 /coverage
11
12 # next.js
13 /.next/
14 /out/
15
16 # production
17 /build
18
19 # misc
20 .DS_Store
21 *.pem
22
23 # debug
24 npm-debug.log*
25 yarn-debug.log*
26 yarn-error.log*
27
28 # local env files
29 .env*.local
30
31 # vercel
32 .vercel
33
34 # typescript
35 *.tsbuildinfo
36 next-env.d.ts
37
38 certificates
39 .idea/
40 *.idea/
41 .env.development
42 package-lock.json
43
44 /public/sitemap.xml
45 /public/sitemap-0.xml
46 /public/robots.txt
47 /public/gaozhenqiang/
48
49 # logs
50 /logs/
51 /statistics.js
52 nul
53
54 # playwright
55 tests/.auth/
56 playwright-report/
57 test-results/
58 .gstack/
59
60 /tmp
61
61 lines Plain Text