Sorry about this rudimentary question, I'm no expert at webpack and etc. How exactly do I run this after building? I see files like index.html and joust.js in the /dist directory but I don't understand how to run this. I can open index.html in a browser but that doesn't really do much. I don't see a bundle.js file in any of the directories either so I can't just open it in a browser. yarn run dev starts webpack but I don't see how it's doing anything.
The closest command that seems to do something is electron ./main.js which shows something like below:
But "Choose file" doesn't do anything beyond literally letting me choose a file.
Sorry about this rudimentary question, I'm no expert at webpack and etc. How exactly do I run this after building? I see files like
index.html
andjoust.js
in the/dist
directory but I don't understand how to run this. I can openindex.html
in a browser but that doesn't really do much. I don't see abundle.js
file in any of the directories either so I can't just open it in a browser.yarn run dev
starts webpack but I don't see how it's doing anything.The closest command that seems to do something is
electron ./main.js
which shows something like below:But "Choose file" doesn't do anything beyond literally letting me choose a file.
Thanks in advance for any help!