I've encountered an issue with my Ionic 4 capacitor app. While it functions properly on Android studio, I'm having trouble getting it to work on Electron. Any ideas on how to resolve this?
Here are the steps I took to convert it to Electron:
npx cap add electron
ionic build --prod
npx cap copy
npx cap open electron
However, when I launch it in Electron, all I see is a blank app without the expected home screen.
home.html
<ion-header>
<ion-toolbar>
<ion-title>
Ionic Blank
</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
<ion-grid>
<ion-row>
<ion-col>
<ion-button color="primary" (click)="createFile()">Create a file</ion-button>
</ion-col>
<ion-col>
<ion-button color="secondary" (click)="view()">View</ion-button>
</ion-col>
</ion-row>
</ion-grid>