0๐
โ
You can extract the webpack bootstrap code to another file by setting optimization.runtimeChunk option
...
optimization: {
runtimeChunk: true
}
...
That is the closest thing I can think of that suites your needs.
Source:stackexchange.com