23 lines
294 B
Text
23 lines
294 B
Text
# do not track installed modules
|
|
/node_modules/
|
|
/.vscode/
|
|
|
|
# do not track built files
|
|
/.next/
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# do not track config files in public
|
|
/public/data/
|
|
|
|
# production
|
|
/build/
|
|
/data/
|
|
/confs/
|
|
/private/ |