I have an HTML5 web app that I\'m packaging up via Electron. I\'m packaging via gulp-electron.
The issue I\'m having is that when the app is built and I run it, none
Turns out there were a few issues with paths.
First the CSS was using relative paths to reference images. Switching this to absolute paths did the trick. This was the same issue for the directives. Switching out relative paths with absolute paths did the trick there.
Finally, the actual CSS and JS files not being loaded looks to be because in the main index.html there was this:
Which was messing with things. Removing that allowed the CSS and JS to load correctly.