Skip to content

Commit d84cb7e

Browse files
Replaced depricated create-react-app with create-next
1 parent 595b6e5 commit d84cb7e

File tree

242 files changed

+7024
-6877
lines changed

Some content is hidden

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

242 files changed

+7024
-6877
lines changed

.dockerignore

-4
This file was deleted.

.eslintrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "next/core-web-vitals",
3+
"rules": {
4+
"@next/next/no-img-element": "off"
5+
}
6+
}

.gitignore

+16-8
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,34 @@
22

33
# dependencies
44
/node_modules
5-
/.vscode
65
/.pnp
76
.pnp.js
87

98
# testing
109
/coverage
1110

11+
# next.js
12+
/.next/
13+
/out/
14+
1215
# production
1316
/build
14-
/dist
15-
1617

1718
# misc
18-
/.vscode
1919
.DS_Store
20-
.env.local
21-
.env.development.local
22-
.env.test.local
23-
.env.production.local
20+
*.pem
2421

22+
# debug
2523
npm-debug.log*
2624
yarn-debug.log*
2725
yarn-error.log*
26+
27+
# local env files
28+
.env*.local
29+
30+
# vercel
31+
.vercel
32+
33+
# typescript
34+
*.tsbuildinfo
35+
next-env.d.ts

.npmignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
/public
44
/docs
55
/src
6+
/.next
67
.gitignore
7-
create-react-app-readme.md
8-
package-lock.json
98
yarn.lock
109
.vscode
1110
*.log

Dockerfile

-15
This file was deleted.

README.md

+158-161
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)