In the latest version of Nextjs (11.1.0), there seems to be an issue where code changes in the `node_modules` directory are not being watched, unlike in the previous version (10.2.1).
While working on a project with Nextjs 11.1.0, I have tried explicitly setting watch options:
config.watchOptions.ignored = config.watchOptions.ignored.filter(
ignore => !ignore.toString().includes('node_modules'),
)
Despite this adjustment, the problem persists. Rebuilding the project using `next build` does solve it, but the compiling process takes too long.