Replies: 2 comments 1 reply
-
nextjs package.json {
"name": "@monorepo/web",
"version": "0.2.1",
"private": true,
"description": "The web application of OrbitKit",
"license": "MIT",
"author": "OrbitKit",
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev --turbo",
"lint": "eslint . --max-warnings 0",
"start": "next start",
"test:e2e": "playwright test",
"typecheck": "tsc"
},
"dependencies": {
"@monorepo/api": "workspace:^",
"@monorepo/auth": "workspace:^",
"@monorepo/db": "workspace:^",
"@monorepo/env": "workspace:^",
"@monorepo/ui": "workspace:^",
"@monorepo/utils": "workspace:^",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-query": "^5.39.0",
"@total-typescript/ts-reset": "^0.5.1",
"@trpc/client": "next",
"@trpc/react-query": "next",
"@trpc/server": "next",
"@unkey/ratelimit": "^0.1.10",
"@uploadthing/react": "^6.6.0",
"geist": "^1.3.0",
"next": "14.2.3",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"server-only": "^0.0.1",
"superjson": "^2.2.1",
"uploadthing": "^6.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@monorepo/eslint": "workspace:^",
"@monorepo/tailwind": "workspace:^",
"@monorepo/tsconfig": "workspace:^",
"@playwright/test": "^1.44.1",
"@types/node": "^20.12.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"dotenv": "^16.4.5",
"jiti": "^1.21.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3"
}
} nextjs.config.js import { fileURLToPath } from 'node:url';
import createJiti from 'jiti';
const jiti = createJiti(fileURLToPath(import.meta.url));
jiti('@orbitkit/env/web');
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
transpilePackages: [
'@monorepo/db',
'@monorepo/auth',
'@monorepo/env',
'@monorepo/api',
'@monorepo/core',
],
eslint: {
ignoreDuringBuilds: true,
},
typescript: {
ignoreBuildErrors: true,
},
};
export default nextConfig; |
Beta Was this translation helpful? Give feedback.
1 reply
-
I am getting a similar error but only after running the codemod to upgrade from next 14 -> 15. I couldn't figure it out or find anyone with the same issue so I ended up having to give up on the upgrade and revert. For me it is happening with uploadthing, but also breaking on a markdown file. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
To reproduce
bun turbo build
orbun install
bun run dev
I initially tried adding webpack rules to ignore markdown but there is still a dist issue
i think ffprobe-installer is dependency of fs.statsync but i cant locate which workspace dependency is causing it
Current behavior
console
on mac, it will be
./node_modules/@ffprobe-installer/darwin-arm64/README.md
Expected behavior
If next dev (local) is performed,
app router fetches data and page should render
Additional information
Example
No response
Beta Was this translation helpful? Give feedback.
All reactions