2016-05-19 78 views

回答

11

你只需要修改firebase.json文件,我認爲看起來有點像這樣:

{ 
"public": "dist", 
"ignore": [ 
    "firebase.json", 
    "**/.*", 
    "**/node_modules/**" 
], 
"rewrites": [ 
    { 
    "source": "**", 
    "destination": "/index.html" 
    } 
] 
} 

你需要移動指定的不同的密鑰(在這種情況下,publicignorerewrites關鍵)到hosting鍵,所以上面的代碼片段如下所示。

{ 
"hosting": { 
    "public": "dist", 
    "ignore": [ 
     "firebase.json", 
     "**/.*", 
     "**/node_modules/**" 
    ], 
    "rewrites": [ 
     { 
     "source": "**", 
     "destination": "/index.html" 
     } 
    ] 
} 
} 

查看該鏈接瞭解Firebase hosting deployment configuration的更多信息。

+0

感謝您的回答 –