Skip to content

Commit 88e7c2b

Browse files
authored
Merge pull request #103 from hammercode-dev/feat/nextjs-and-toaster
[FEAT] - Update NextJS and Toaster Theme Fix Final Season
2 parents 8e7f48d + b70a3a6 commit 88e7c2b

File tree

6 files changed

+600
-601
lines changed

6 files changed

+600
-601
lines changed

.prettierignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ package-lock.json
44
public
55
node_modules
66
next-env.d.ts
7-
next.config.ts
87
yarn.lock

next.config.mjs renamed to next.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1+
import type { NextConfig } from "next";
12
import createNextIntlPlugin from "next-intl/plugin";
23

34
const withNextIntl = createNextIntlPlugin("./src/lib/i18n.ts");
45

5-
/** @type {import('next').NextConfig} */
6-
const nextConfig = {
6+
const nextConfig: NextConfig = {
77
pageExtensions: ["js", "jsx", "mdx", "ts", "tsx"],
88
images: {
99
dangerouslyAllowLocalIP: true,

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@
6666
"lucide-react": "^0.536.0",
6767
"marked": "^16.2.1",
6868
"motion": "^12.7.4",
69-
"next": "16.0.1",
69+
"next": "16.0.7",
7070
"next-intl": "^4.1.0",
7171
"next-mdx-remote": "^5.0.0",
7272
"next-themes": "^0.4.6",
7373
"prettier-plugin-tailwindcss": "^0.6.11",
74-
"react": "19.2.0",
74+
"react": "19.2.1",
7575
"react-day-picker": "^9.9.0",
76-
"react-dom": "19.2.0",
76+
"react-dom": "19.2.1",
7777
"react-hook-form": "^7.62.0",
7878
"rehype-pretty-code": "^0.14.1",
7979
"remark-gfm": "^4.0.1",
@@ -94,14 +94,14 @@
9494
"@testing-library/user-event": "^14.5.2",
9595
"@types/js-cookie": "^3.0.6",
9696
"@types/node": "^20",
97-
"@types/react": "19.2.2",
98-
"@types/react-dom": "19.2.2",
97+
"@types/react": "19.2.7",
98+
"@types/react-dom": "19.2.3",
9999
"@types/turndown": "^5.0.5",
100100
"@typescript-eslint/eslint-plugin": "^8.0.1",
101101
"@typescript-eslint/parser": "^8.0.1",
102102
"@vitejs/plugin-react": "^4.3.3",
103103
"eslint": "^9",
104-
"eslint-config-next": "16.0.1",
104+
"eslint-config-next": "16.0.7",
105105
"eslint-config-prettier": "^9.1.0",
106106
"eslint-plugin-react": "^7.35.0",
107107
"globals": "^16.5.0",
@@ -120,7 +120,7 @@
120120
"**/*": "prettier --write --ignore-unknown"
121121
},
122122
"resolutions": {
123-
"@types/react": "19.2.2",
124-
"@types/react-dom": "19.2.2"
123+
"@types/react": "19.2.7",
124+
"@types/react-dom": "19.2.3"
125125
}
126126
}

0 commit comments

Comments
 (0)