Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
222 views

I've been pulling my hair out over this for hours. My metadata is rendering inside the <body> tag instead of the <head> on the server-side HTML, which is completely breaking SEO. The weird ...
Kareem A's user avatar
0 votes
0 answers
523 views

I have a Next.js 15 application that builds successfully on AWS Amplify but returns a 404 error when accessing the deployed site. The build completes without errors, but the homepage and other routes ...
Anuj TBE's user avatar
  • 9,922
0 votes
0 answers
80 views

when you freshly download the tubrorepo using npx create-turbo@latest and uses npm than if you try to open the nextjs website in local host you face the interval server error problem which can be ...
kushal chetri's user avatar
1 vote
1 answer
256 views

I am using latest Next.js and sass (scss) in my project. Here is next.config.ts configuration: import type { NextConfig } from 'next'; import createNextIntlPlugin from 'next-intl/plugin'; import '~/...
Ilya Kruchinin's user avatar
1 vote
2 answers
2k views

I’m using the latest version of Next.js with Turbopack and trying to set up Tailwind CSS, but it’s not being applied at all. I followed the Next.js, but styles don’t work. No errors during compilation,...
Adriano Faletar's user avatar
1 vote
1 answer
1k views

My project is running in Next.JS 15.0.3 with turbopack. raw-loader is now supported with turbopack and so I'd like to configure it to load webgl shaders files. I've installed raw-loader as dev ...
heskir's user avatar
  • 45
0 votes
0 answers
44 views

The font import import { Archivo_Narrow } from 'next/font/google'; export const archivoNarrow = Archivo_Narrow({ subsets: ['latin'] }); Code change made with import ✓ Compiled / in 33.2s Code change ...
newxomer's user avatar
0 votes
1 answer
302 views

Supporting old browsers seems impossible when using nextjs v15 with App router. browserslist in package.json doesn't do anything, changing tsconfig.json compiler option target doesn't affect build ...
Mil's user avatar
  • 53
4 votes
1 answer
1k views

I'm developing a package, which I also need to test with local next.js project. The structure is: [email protected] C:\Users\mist\code\my-package ├── package.json ├── src ├── example/ ├── package....
Mist's user avatar
  • 1,338
5 votes
2 answers
723 views

I'm working on a Next.js 15.0.2 project with turbopack using TypeScript, and I'm integrating the Stockfish chess engine to create a Web Worker on the client side. The Stockfish library is stored in ...
ius's user avatar
  • 1,641
0 votes
2 answers
1k views

Turbopack supports loading SVGs using @svgr/webpack: const nextConfig: NextConfig = { experimental: { turbo: { rules: { '*.svg': { loaders: ['@svgr/webpack'], ...
Mir-Ismaili's user avatar
  • 17.7k
1 vote
0 answers
1k views

I am using package in my NextJS which includes modules for React Native that need to be excluded. As part of a migration to move to Turbopack from Webpack, I need to find a way to exclude these ...
Mark Barton's user avatar
8 votes
3 answers
8k views

I'm working on a Next.js project and I'm encountering an unusual error. When I click on a button in my application, I get the following error: Module not found: Can't resolve '@vercel/turbopack-...
Jolanta's user avatar
  • 105
1 vote
0 answers
99 views

I am using next14 app router and routes handlers with mongoose ORM. It was working fine when i was using webpack. here is the stacktrace ⨯ TypeError: Cannot set properties of undefined (setting 'base')...
Pranit Patil's user avatar
0 votes
1 answer
369 views

I wrote not-found.tsx on top of the default file created when create next app. It seems to be working fine, but the console keeps giving me an error every second. Also, when I run the next app with ...
chebread's user avatar
  • 101
4 votes
2 answers
4k views

The documentation says that turbopack works with @svgr/webpack, but doesn't really want to work. If you run the project without --turbo (turbopack), everything works fine. And if run with --turbo, it ...
Vasyl Penteleychuk's user avatar
3 votes
0 answers
209 views

I have already verified that my internet connection is stable, and I have double-checked my Firebase configuration. I have also made sure that I have installed the correct version of the firebase ...
Tom Fan's user avatar
  • 560
7 votes
0 answers
1k views

Node APIs are not available on the client, but many NextJS projects have nested dependencies to these APIs (i.e. fs). With webpack it's easy to adjust how the module resolves based on client/server ...
Taylor Johnson's user avatar
1 vote
1 answer
1k views

I created a new [email protected] project with Turbopack and added middleware.ts file to the project's root directory. When I sent a request(e.g. /api/search?query=Hello), the middleware wasn't executed. ...
tronx.dev's user avatar
  • 138
9 votes
1 answer
4k views

Since it's apparently very fast, It would be nice if it could be used outside for multiple projects like Vite. Couldn't find much information about it on their website https://turbo.build/pack Went to ...
renegadevi's user avatar