Skip to content

Commit 08ba883

Browse files
chore(web): Turbopack builds
1 parent 6a4c922 commit 08ba883

File tree

3 files changed

+854
-304
lines changed

3 files changed

+854
-304
lines changed

packages/web/next.config.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ const nextConfig = {
3939
]
4040
},
4141

42-
turbopack: {}
42+
turbopack: {},
43+
// @see: https://github.com/vercel/next.js/issues/82584
44+
experimental: {
45+
turbopackScopeHoisting: false
46+
}
4347
};
4448

4549
export default withSentryConfig(nextConfig, {

packages/web/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"scripts": {
66
"dev": "next dev --turbopack",
7-
"build": "cross-env SKIP_ENV_VALIDATION=1 next build",
7+
"build": "cross-env SKIP_ENV_VALIDATION=1 next build --turbopack",
88
"start": "next start",
99
"lint": "cross-env SKIP_ENV_VALIDATION=1 eslint .",
1010
"test": "cross-env SKIP_ENV_VALIDATION=1 vitest",
@@ -87,7 +87,7 @@
8787
"@replit/codemirror-lang-solidity": "^6.0.2",
8888
"@replit/codemirror-lang-svelte": "^6.0.0",
8989
"@replit/codemirror-vim": "^6.2.1",
90-
"@sentry/nextjs": "^9",
90+
"@sentry/nextjs": "^10.17.0",
9191
"@shopify/lang-jsonc": "^1.0.0",
9292
"@sourcebot/codemirror-lang-tcl": "^1.0.12",
9393
"@sourcebot/crypto": "workspace:*",
@@ -147,7 +147,7 @@
147147
"langfuse-vercel": "^3.38.4",
148148
"lucide-react": "^0.517.0",
149149
"micromatch": "^4.0.8",
150-
"next": "15.5.0",
150+
"next": "^15.5.4",
151151
"next-auth": "^5.0.0-beta.25",
152152
"next-navigation-guard": "^0.2.0",
153153
"next-themes": "^0.3.0",

0 commit comments

Comments
 (0)