how to configure a Cordova App to render content from Live-Server
Add elements: content
and allow-navigation
<widget>
<content src="http://127.0.0.1:8080" />
<allow-navigation href="http://127.0.0.1:8080/*" />
</widget>
Update meta CSP to include: ws: wss: 'unsafe-inline' http://127.0.0.1:8080
<head>
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: ws: wss: 'unsafe-inline' http://127.0.0.1:8080 https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *; img-src 'self' data: content:;">
</head>
npx live-server --port=8080