如何使用./而不是/ bundle src在html-webpack-plugin中构建index.html

时间:2017-09-05 13:05:39

标签: html-webpack-plugin

我的html-webpack-plugin使用bundle src构建一个index.html到/ main [hash] .html

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

如何在src url的开头用./构建index.html?像这样:

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

1 个答案:

答案 0 :(得分:0)

在输出配置中添加publicPath setting。有关更完整的示例,请参阅https://github.com/jantimon/html-webpack-plugin/issues/694;在你的情况下,你可能想要在你的webpack配置中这样的东西:

module.exports = {
  // …
  output: {
    // …
    publicPath: '.'
  },
  //…
}