[Vuejs]-Vue-Cli-Service โ€“ Skipping webpack

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.

Leave a comment