我正在测试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>
答案 0 :(得分:1)
您可以在webpack.publicPath
文件中使用nwb.config.js
:
如果要创建与路径无关的构建,请将
publicPath
设置为空白:module.exports = { webpack: { publicPath: '' } }
来源:https://github.com/insin/nwb/blob/master/docs/Configuration.md#publicpath-string