Replies: 2 comments
-
Type hint still works for me |
Beta Was this translation helpful? Give feedback.
0 replies
-
If you're shipping the CRYPTO_SECRET to the browser, that means someone could steal it from the JS files and use it to decrypt your data. I think #8048 will let you solve this, instead of sending raw structured data you can send the React elements which is not gonna be much different than the HTML data. |
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.
-
why encrypt loader data?
i don't want anyone see structured loader data in F12 html source code, because it's easy for hackers using crawlers to steal these structured data by parse html source code.
so i use CryptoJS to encrypt and decrypt loader data
it will show successfully, and the loader data in html source code just be a string, it's very good. but i lose type hints of loader data in dev, do have some way that i can encrypt loader data with no type hints lose?
Beta Was this translation helpful? Give feedback.
All reactions