Replies: 2 comments
-
It is also no working that I set the |
Beta Was this translation helpful? Give feedback.
0 replies
-
In // Turn `<origin>/<path>/_next/static/...` into `app:///_next/static/...`
iteratee: frame => {
try {
const { origin } = new URL(frame.filename as string);
frame.filename = frame.filename?.replace(origin, 'app://').replace(assetPrefixPath, '');
} catch (err) {
// Filename wasn't a properly formed URL, so there's nothing we can do
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I hope show the blue JumpButton to jump the error js url like the expect result below which I found in posts on the Internet.
But the actual result is no button has been show and the error js path start with the
app:///
.And My assets such as js all in cdn set the other url origin.
Expect Result:

Actual Result:

Beta Was this translation helpful? Give feedback.
All reactions