I just developed the project using webpack2 and vue2. I have other external plugins which cannot be installed through npm. So my question is the best way to include these files. Here are my index.html
<html>
<head>
</head>
<body>
<div id="app"></div>
<script src="app.js"></script>
<script src="/static/js/flowchart.js"></script>
<script src="/static/js/exteral2.js"></script>
</body>
</html>
this is my index.html whare I include some external js files. Can we do some bundling so that we dont need to include these external files to index.html or this is the only way to include external js files.
Any help would be highly appreciated. Thanks