如何在VUE JS WEBPACK项目中通过<script>标签自动将NPM "dependencies"包含到index.html中?

How to automatically include NPM "dependencies" into index.html through <script> tags in VUE JS WEBPACK project?

我知道有一个 GRUNT-BOWER 插件,它会在您每次安装任何新的 Bower 包时通过标签自动将 BOWER 依赖项包含到 index.html 文件中。

是否有任何类似的工具可以自动将 NPM 依赖项注入/包含到 index.html 中?

仅供参考,该项目是一个 VUE-CLI WEBPACK 项目。这可以通过 WEBPACK 实现吗,还是我需要一个专用的构建工具来实现?

如果您已经在使用 webpack,您可以看看 html-webpack-plugin。它将创建一个 .html 文件,并将您的包添加为脚本标签。

html-webpack-plugin 结合创建 vendor bundle 应该有助于解决这个问题。