I was having the same issue when using Next.js 15 with turbopack, disabling turbopack fixed it for me.
Maybe some or all workers do not work with turbopack (i am not sure)
package.json
{
"scripts": {
"dev": "next dev" // remove --turbopack option
}
}