Replies: 1 comment
-
After about build 50 tries... I figured out few things
|
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
-
I use AES to encrypt my app code. When app starts it starts in loader.js
It reads encrypted binary, decrypts it into string. String is executed in
eval()
.I have source maps for loader.js and for the app code. Lets call it app.js and I send both files unencrypted to Sentry via webpack plugin.
app.js is bundled with Webpack but loader.js is only copied... so I added legacy option to upload it as well (it was missing in Sentry without it)
But Sentry says it cannot get paired.
What is Debug ID and how do I inject it? Since loader.js wasn't going through the Webpack... it wasn't injected, right?
And for legacy method... would I need to tweak the stackframe names?
This is stack trace for a reference
Some code is nested inside app internals callback and I don't have source maps for those internal API and its callbacks
Is a such a thing possible to do?
Beta Was this translation helpful? Give feedback.
All reactions