I have created a React.js app after the final production build. I have found Source code on the browser network tab on fetch:
After clicking on agent_list.js
it shows source js code
How to secure this one ?
I have created a React.js app after the final production build. I have found Source code on the browser network tab on fetch:
After clicking on agent_list.js
it shows source js code
How to secure this one ?
Unless you did not use create-React-app
(CRA), your code should be uglyfied
and minified
, because CRA comes with webpack
by default, which handles your app bundling
(even in dev mode). Otherwise I’d recommend you to research the terms between quotes
to familiarize your self more with the topic.