When running "npm run build" to build a project in Webpack, html files are not copied into the dist directory.
Based off the following Stack Overflow thread, it appears this behaviour is normal and there are several workarounds to automate this process as outlined in the accepted answer.
Webpack.config how to just copy the index.html to the dist folder
However, my question is why Webpack doesn't bundle html files (along with JavaScript and CSS files) by design since it seems like such a trivial feature, which I expected it to accomplish as a Webpack novice.