生成的路径使用html-webpack-plugin格式错误

时间:2018-01-13 09:36:06

标签: vuejs2 webpack-2 html-webpack-plugin

我正在Windows 10上使用webpack2构建vue.js应用程序,问题在于生成的路径:

<script type="text/javascript" src="\js\main.js"></script>

而不是:

<script type="text/javascript" src="/js/main.js"></script>

html-webpack-plugin配置:

new HtmlWebpackPlugin({
      filename: "index.html",
      template: "src/html/index.html",
      inject: true,
      chunksSortMode: "dependency"
    })

Thanx提前获得任何帮助,

0 个答案:

没有答案