I'm building an app that utilizes webview, particularly with Chromium or CEF. I wanted to know if it's alright to set up a localhost server to run the app from there. Is this considered bad practice or is it generally accepted?
1 Answer
It's generally fine to use a localhost server during development, but you should be cautious about using it in production. Local servers can introduce security risks and deployment issues. If you can, try to load your files directly instead.

Thank you for clarifying that!