mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 12:25:22 +00:00
Merge c42098bea3 into 4b86bcd182
This commit is contained in:
commit
b56df48ee6
3 changed files with 885 additions and 335 deletions
|
|
@ -39,7 +39,11 @@ const nextConfig = {
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
turbopack: {}
|
turbopack: {},
|
||||||
|
// @see: https://github.com/vercel/next.js/issues/82584
|
||||||
|
experimental: {
|
||||||
|
turbopackScopeHoisting: false
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default withSentryConfig(nextConfig, {
|
export default withSentryConfig(nextConfig, {
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev --turbopack",
|
"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",
|
"start": "next start",
|
||||||
"lint": "cross-env SKIP_ENV_VALIDATION=1 eslint .",
|
"lint": "cross-env SKIP_ENV_VALIDATION=1 eslint .",
|
||||||
"test": "cross-env SKIP_ENV_VALIDATION=1 vitest",
|
"test": "cross-env SKIP_ENV_VALIDATION=1 vitest",
|
||||||
|
|
@ -87,7 +87,7 @@
|
||||||
"@replit/codemirror-lang-solidity": "^6.0.2",
|
"@replit/codemirror-lang-solidity": "^6.0.2",
|
||||||
"@replit/codemirror-lang-svelte": "^6.0.0",
|
"@replit/codemirror-lang-svelte": "^6.0.0",
|
||||||
"@replit/codemirror-vim": "^6.2.1",
|
"@replit/codemirror-vim": "^6.2.1",
|
||||||
"@sentry/nextjs": "^9",
|
"@sentry/nextjs": "^10.17.0",
|
||||||
"@shopify/lang-jsonc": "^1.0.0",
|
"@shopify/lang-jsonc": "^1.0.0",
|
||||||
"@sourcebot/codemirror-lang-tcl": "^1.0.12",
|
"@sourcebot/codemirror-lang-tcl": "^1.0.12",
|
||||||
"@sourcebot/crypto": "workspace:*",
|
"@sourcebot/crypto": "workspace:*",
|
||||||
|
|
@ -147,7 +147,7 @@
|
||||||
"langfuse-vercel": "^3.38.4",
|
"langfuse-vercel": "^3.38.4",
|
||||||
"lucide-react": "^0.517.0",
|
"lucide-react": "^0.517.0",
|
||||||
"micromatch": "^4.0.8",
|
"micromatch": "^4.0.8",
|
||||||
"next": "15.5.0",
|
"next": "^15.5.4",
|
||||||
"next-auth": "^5.0.0-beta.25",
|
"next-auth": "^5.0.0-beta.25",
|
||||||
"next-navigation-guard": "^0.2.0",
|
"next-navigation-guard": "^0.2.0",
|
||||||
"next-themes": "^0.3.0",
|
"next-themes": "^0.3.0",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue