Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion packages/web/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ const nextConfig = {
]
},

turbopack: {}
turbopack: {},
// @see: https://github.com/vercel/next.js/issues/82584
experimental: {
turbopackScopeHoisting: false
}
};

export default withSentryConfig(nextConfig, {
Expand Down
6 changes: 3 additions & 3 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "cross-env SKIP_ENV_VALIDATION=1 next build",
"build": "cross-env SKIP_ENV_VALIDATION=1 next build --turbopack",
"start": "next start",
"lint": "cross-env SKIP_ENV_VALIDATION=1 eslint .",
"test": "cross-env SKIP_ENV_VALIDATION=1 vitest",
Expand Down Expand Up @@ -87,7 +87,7 @@
"@replit/codemirror-lang-solidity": "^6.0.2",
"@replit/codemirror-lang-svelte": "^6.0.0",
"@replit/codemirror-vim": "^6.2.1",
"@sentry/nextjs": "^9",
"@sentry/nextjs": "^10.17.0",
"@shopify/lang-jsonc": "^1.0.0",
"@sourcebot/codemirror-lang-tcl": "^1.0.12",
"@sourcebot/crypto": "workspace:*",
Expand Down Expand Up @@ -147,7 +147,7 @@
"langfuse-vercel": "^3.38.4",
"lucide-react": "^0.517.0",
"micromatch": "^4.0.8",
"next": "15.5.0",
"next": "^15.5.4",
"next-auth": "^5.0.0-beta.25",
"next-navigation-guard": "^0.2.0",
"next-themes": "^0.3.0",
Expand Down
Loading