You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Next.js 15.2.0 or 15.2.1**: There is a known [issue](https://github.com/vercel/next.js/issues/76497) with Turbopack on these specific versions. Remove Turbopack from your dev script by updating your `package.json`:
254
-
```json file=package.json
255
-
"script":{
256
-
//delete-start
257
-
"dev": "next dev --turbopack",
258
-
//delete-end
259
-
//add-start
260
-
"dev": "next dev",
261
-
//add-end
262
-
}
263
-
```
264
-
265
-
**Next.js 16+**: Turbopack is now stable and enabled by default. The `--turbopack` flag is no longer used. If you encounter issues and need to use Webpack instead, use the `--webpack` flag:
266
-
```json file=package.json
267
-
"script":{
268
-
//delete-start
269
-
"dev": "next dev",
270
-
//delete-end
271
-
//add-start
272
-
"dev": "next dev --webpack",
273
-
//add-end
274
-
}
275
-
```
276
-
277
-
:::
278
-
279
250
Finally, run `prisma db seed` to seed your database with the initial data we defined in the `seed.ts` file.
0 commit comments