Firebase托管和聚合物 - 拥有多个入口点

时间:2016-07-08 18:09:46

标签: polymer polymer-1.0 firebase-hosting

我正在尝试为我在Google Firebase Hosting上托管的Polymer应用添加多个入口点。

我在我的firebase.json中尝试了类似的东西,其中page.html是一个独立的聚合物应用程序。

{
  "database": {
    "rules": "database.rules.json"
  },
  "hosting": {
    "public": "build/bundled"
  },
  "rewrites": [ 
  {
      "source": "page.html",
      "destination": "/page.html"
   },
   {
    "source": "**",
     "destination": "/index.html"
   }
  ]

}

使用这种方法,我在注册已注册的元素方​​面遇到很多错误。

我可以为我的polymer.json添加多个入口点

{
  "entrypoint": "index.html",

我正在做的原因与某些任务不同,我不希望用户下载整个应用程序,并将营销页面和应用程序文档与应用程序分开。

0 个答案:

没有答案