According to the Kentico technical support adviser, in order to get my create-react-app application rendered on IE11, I had to change the following line of code inside the node_modules -> kentico-cloud-delivery -> package.json file:
"main": "./_bundles/kentico-cloud-delivery-sdk.browser.umd.min.js"
After this change, my react application is rendering on my local IE, but the problem is that how can I push this change into the bitbucket so that the react application could be rendered on IE11 on a server as well.
Regarding that usually, we never push the node_modules into bitbucket and put it in .gitignore file, would you please let me know how can I resolve this problem. Note: My project is a create-react-app application.
By not pushing your npm-modules to a bitbucket server it means that the application running there will fetch packages from a list in a file usually called package.json. So, you are probably pushing a .json file to a bitbucket which contains all dependency information and which you can edit to render your app in IE11.
Cheers!