如何为Polymer应用程序设置基本URL

时间:2017-06-27 18:12:57

标签: polymer polymer-2.x polymer-starter-kit

我想将我的Polymer应用程序配置为在此URL上启动:

http://localhost:8081/polymer

而不是默认值:

http://localhost:8081

如何设置应用的基本网址?

我尝试了以下但似乎无法让它发挥作用:

的package.json

{
    "homepage": "http://localhost:8081/polymer"
}

1 个答案:

答案 0 :(得分:2)

结帐Polymer.rootPathPolymer.importPathhttps://www.polymer-project.org/2.0/docs/upgrade#urls-in-templates你应用程序shell中的某个地方你应该定义Polymer.rootPath = 'somePath'(但是你想要召唤它),然后你的应用程序中的其他地方如果你需要利用这个路径,你可以这样使用它:

<iron-ajax url="[[rootPath]]api/somepath/somepath"></iron-ajax>