Hello, for those who are using the latest version of Next and the extension stopped working suddenly, here is the explanation:
The NextJs team have launched recently the 14.2.13 package, so everyone with
"next": "^14.1.0", in their package.json will face the extension suddenly stopped working (as it will be updated to a newer version by using ^)
Explanation about why this issue is happening:
NextJs team updated React right before 14.1.1-canary.45 version
This update, includes the commit facebook/react#28265
Comments from the author:

This commit is deleting _debugSource, here is the explanation of what is actually happening:
facebook/react#29092 (comment)
Using NextJs Version 14.1.1-canary.44 (before the ReactJs release):
Using NextJs Version 14.1.1-canary.45 (after the ReactJs release):
As the _debugSource is not there in the 14.1.1-canary.45 version, we cannot make use of the _debugSource to open the file in vscode.
NextJs developers who updated to the last version cannot make use of the extension till new updates on react fiber.
Hello, for those who are using the latest version of Next and the extension stopped working suddenly, here is the explanation:
The NextJs team have launched recently the 14.2.13 package, so everyone with
"next": "^14.1.0",in theirpackage.jsonwill face the extension suddenly stopped working (as it will be updated to a newer version by using^)Explanation about why this issue is happening:
NextJs team updated React right before
14.1.1-canary.45 versionThis update, includes the commit facebook/react#28265
Comments from the author:

This commit is deleting
_debugSource, here is the explanation of what is actually happening:facebook/react#29092 (comment)
Using NextJs Version
14.1.1-canary.44(before the ReactJs release):Using NextJs Version
14.1.1-canary.45(after the ReactJs release):As the _debugSource is not there in the
14.1.1-canary.45version, we cannot make use of the_debugSourceto open the file in vscode.NextJs developers who updated to the last version cannot make use of the extension till new updates on react fiber.