Skip to content

Commit ed1784d

Browse files
committed
Refactor Code
1 parent cb327ec commit ed1784d

16 files changed

+7421
-24
lines changed

.eslintrc.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"extends": "next/core-web-vitals"
2+
"extends": "next/core-web-vitals",
3+
"rules": {
4+
"@next/next/no-img-element": "off"
5+
}
36
}

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

3-
#package-lock.json
4-
package-lock.json
5-
63
# dependencies
74
/node_modules
85
/.pnp
@@ -13,6 +10,7 @@ package-lock.json
1310

1411
# next.js
1512
/.next/
13+
/out/
1614

1715
# production
1816
/build

components/Home/DeveloperPath.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import Image from 'next/image'
2-
31
const DeveloperPath = () => {
42
const devPaths = [
53
{

next.config.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
module.exports = {
2-
reactStrictMode: true,
3-
images: {
4-
domains: ['res.cloudinary.com', 'github.com']
2+
exportPathMap: function () {
3+
return {
4+
'/': { page: '/' }
55
}
6+
},
7+
reactStrictMode: true,
8+
images: {
9+
domains: ['res.cloudinary.com', 'github.com']
10+
}
611
}

out/_next/static/6noCD3vzjTiMBoYbnU8zr/_buildManifest.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

out/_next/static/6noCD3vzjTiMBoYbnU8zr/_middlewareManifest.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

out/_next/static/6noCD3vzjTiMBoYbnU8zr/_ssgManifest.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

out/_next/static/chunks/pages/_app-88668242cfc6b85b.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

out/_next/static/chunks/pages/blog-dc97a72676750e77.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

out/_next/static/chunks/pages/index-bff7dfa1cca369b8.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)