Skip to content

Commit 6d9e611

Browse files
committed
2 parents 9ec6c86 + 3335e22 commit 6d9e611

File tree

201 files changed

+9917
-3424
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

201 files changed

+9917
-3424
lines changed

.gitignore

Lines changed: 17 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# dependencies
2-
node_modules/
2+
**/node_modules/
33
.pnp.cjs
44
.pnp.loader.mjs
55
.yarn/*
@@ -9,29 +9,28 @@ node_modules/
99
!.yarn/versions
1010

1111
# next.js build & cache
12-
.next/
13-
.next/cache/
14-
out/
12+
**/.next/
13+
**/out/
1514

1615
# production / build
17-
build/
18-
dist/
16+
**/build/
17+
**/dist/
1918

2019
# storybook
21-
storybook-static/
20+
**/storybook-static/
2221
*.storybook.log
2322
src/stories/*
2423

2524
# coverage / testing
26-
coverage/
25+
**/coverage/
2726

2827
# env
2928
.env*
3029
*.env
3130

3231
# vercel / turbo
3332
.vercel/
34-
.turbo/
33+
**/.turbo/
3534

3635
# misc
3736
.DS_Store
@@ -43,18 +42,16 @@ yarn-debug.log*
4342
yarn-error.log*
4443
.pnpm-debug.log*
4544
.eslintcache
46-
4745
.idea/
4846
.vscode/
4947

50-
**/.next/
51-
**/out/
52-
**/build/
53-
**/dist/
54-
**/storybook-static/
55-
56-
**/node_modules/
48+
# npm caches & local config
49+
.npm-cache/
50+
.npm/
51+
.npmrc
5752

58-
# next-pwa generated service workers
59-
public/sw.js
60-
public/workbox-*.js
53+
# next-pwa / Workbox generated artifacts
54+
public/workbox-*.js
55+
public/worker-*.js
56+
public/fallback-*.js
57+
public/sw.js

0 commit comments

Comments
 (0)