source: frontend/.gitignore

Last change on this file was b8093a0, checked in by imbrsk <boris696boris@…>, 3 days ago

Merge iknow-remaster into frontend/

Bring the Next.js frontend into this repository as a monorepo subdirectory,
preserving its full commit history via a subtree merge.

  • Property mode set to 100644
File size: 480 bytes
Line 
1# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
3# dependencies
4/node_modules
5/.pnp
6.pnp.*
7.yarn/*
8!.yarn/patches
9!.yarn/plugins
10!.yarn/releases
11!.yarn/versions
12
13# testing
14/coverage
15
16# next.js
17/.next/
18/out/
19
20# production
21/build
22
23# misc
24.DS_Store
25*.pem
26
27# debug
28npm-debug.log*
29yarn-debug.log*
30yarn-error.log*
31.pnpm-debug.log*
32
33# env files (can opt-in for committing if needed)
34.env*
35
36# vercel
37.vercel
38
39# typescript
40*.tsbuildinfo
41next-env.d.ts
Note: See TracBrowser for help on using the repository browser.