How to forbid remote debug in ionic app after released?

Normally, ionic app can debug via chrome remote debug. But when the app released, others still can see all
the code via chrome remote debug. is it possible to forbidden remote debug in my app?

You need to build the app with the release flag
ionic build --release android
This turns off all the debug stuff

Thanks so much. I’ll try.