In all the examples I saw, the html entrypoint file (like index.html) lives next to all the built-in resources released by webpack.
build/ index.html bundle.js 1.bundle.js 2.bundle.js etc
I want my html entry point to be separated from the embedded resources:
index.html build/ bundle.js 1.bundle.js 2.bundle.js etc
Is this possible with webpack?
source share