Electron app integration
I got Router working with Electron and now I'm trying to do the same with Start.
The entry point with Electron is index.html
There is no src/main.tsx with Start. What would be the correct substitute?
Or do I need to go further up the chain and direct Electron to the correct start entry point?
Thanks
The entry point with Electron is index.html
<script type="module" src="/src/main.tsx"></script>
There is no src/main.tsx with Start. What would be the correct substitute?
Or do I need to go further up the chain and direct Electron to the correct start entry point?
Thanks