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
Fixes: #61303
The snapshot path transformation was incorrectly matching partial
paths like '/node' within '/node_modules' or 'nodejs.org', causing
false replacements.
Added negative lookahead (?![\w/]) to the regex patterns to ensure
only complete path segments are matched, preventing partial matches
in directory names and URLs.
0 commit comments