nwb build-react-app创建根路径而不是相对路径

时间:2016-09-12 00:06:16

标签: reactjs npm nwb

我正在测试nwb,以使用此示例project简化构建反应应用程序。在构建应用程序时,index.html中引用的css和js文件的路径是root而不是相对的。有没有办法改变引用?

例如:

在html中,引用如下,

<script type="text/javascript" src="/vendor.b3f34f12.js"></script>
<script type="text/javascript" src="/app.9b5c57d3.js"></script> 

而不是,

<script type="text/javascript" src="./vendor.b3f34f12.js"></script>
<script type="text/javascript" src="./app.9b5c57d3.js"></script> 

1 个答案:

答案 0 :(得分:1)

您可以在webpack.publicPath文件中使用nwb.config.js

  

如果要创建与路径无关的构建,请将publicPath设置为空白:

module.exports = {
  webpack: {
    publicPath: ''
  }
}

来源:https://github.com/insin/nwb/blob/master/docs/Configuration.md#publicpath-string