如何在Vue中的index.html中使用静态资源?

时间:2019-02-22 12:21:26

标签: javascript vue.js webpack

我已经建立了一个vue项目,内容是

project content

在index.html中,我已经使用

<script src="./static/index.js"></script>

并且在webpack编译后,我希望它成为

<script src="example.com/static/js/index.js"></script>

example.com是我在配置文件中设置的assetsPublicPath。

/ dist内容中的文件(index.html)仍然

<script src="./static/index.js"></script> 

但是不管用,我该怎么做,更改webpack或其他内容

0 个答案:

没有答案