So here's the situation - I am utilizing a C# console application to convert four XML files into an HTML document. This particular document will be circulated among a specific group of individuals and is not intended to be hosted or used as a web app; it's simply a generated html file. Is there a method to package this file along with its corresponding javascript and css files? Currently, I have them saved on the work file system and directly referenced in the html, which works for now. However, ideally I would like to bundle them up somehow.
After some research, it appears that webpack might provide the solution I'm seeking, but this problem seems so straightforward that I wonder if I might be missing something. Everything I search for seems to trigger searches filled with technical jargon.
In summary: I have an HTML document and I want to share it without physically sending the CSS and JS files separately, and without hosting it on a web app. How can I bundle this file in such a way that when someone else opens it, they will view and interact with the file as intended with the CSS and JS included?