Skip to content

Commit 2411cd3

Browse files
author
Miriad
committed
fix: use webpack for production build + add missing dependencies
- Switch build script to 'next build --webpack' to avoid Turbopack panic bug in Next.js 16.1.6 - Add missing dependencies: micromark-extension-gfm-table, @react-email/render, react-markdown, embla-carousel-autoplay - TypeScript compiles clean (tsc --noEmit passes with zero errors)
1 parent bb193a4 commit 2411cd3

File tree

2 files changed

+465
-3
lines changed

2 files changed

+465
-3
lines changed

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"scripts": {
44
"dev": "next dev --turbo",
5-
"build": "next build",
5+
"build": "next build --webpack",
66
"start": "next start",
77
"lint": "biome check .",
88
"predev": "npm run typegen",
@@ -46,6 +46,7 @@
4646
"@radix-ui/react-toggle": "^1.1.10",
4747
"@radix-ui/react-toggle-group": "^1.1.11",
4848
"@radix-ui/react-tooltip": "^1.2.8",
49+
"@react-email/render": "^2.0.4",
4950
"@remotion/cli": "^4.0.431",
5051
"@remotion/lambda": "^4.0.431",
5152
"@sanity/assist": "^5.0.4",
@@ -67,6 +68,7 @@
6768
"clsx": "^2.1.1",
6869
"cmdk": "^1.1.1",
6970
"date-fns": "^4.1.0",
71+
"embla-carousel-autoplay": "^8.6.0",
7072
"embla-carousel-react": "^8.6.0",
7173
"feed": "^5.2.0",
7274
"googleapis": "^171.4.0",
@@ -75,6 +77,7 @@
7577
"jwt-decode": "^4.0.0",
7678
"lucide-react": "^0.576.0",
7779
"micromark": "^4.0.2",
80+
"micromark-extension-gfm-table": "^2.1.1",
7881
"next": "^16.1.6",
7982
"next-cloudinary": "^6.17.5",
8083
"next-sanity": "^12.1.0",
@@ -92,6 +95,7 @@
9295
"react-inlinesvg": "^4.2.0",
9396
"react-instantsearch": "^7.26.0",
9497
"react-instantsearch-nextjs": "^1.1.0",
98+
"react-markdown": "^10.1.0",
9599
"react-resizable-panels": "^4.7.0",
96100
"react-syntax-highlighter": "^16.1.1",
97101
"react-twitter-embed": "^4.0.4",

0 commit comments

Comments
 (0)