我想将我的Polymer应用程序配置为在此URL上启动:
http://localhost:8081/polymer
而不是默认值:
http://localhost:8081
如何设置应用的基本网址?
我尝试了以下但似乎无法让它发挥作用:
的package.json
{
"homepage": "http://localhost:8081/polymer"
}
答案 0 :(得分:2)
结帐Polymer.rootPath
和Polymer.importPath
。 https://www.polymer-project.org/2.0/docs/upgrade#urls-in-templates你应用程序shell中的某个地方你应该定义Polymer.rootPath = 'somePath'
(但是你想要召唤它),然后你的应用程序中的其他地方如果你需要利用这个路径,你可以这样使用它:
<iron-ajax url="[[rootPath]]api/somepath/somepath"></iron-ajax>