有没有人有在新的 Azure 资源静态 Web 应用程序中托管 Angular PWA 应用程序的经验?
我试图修改routes.json
文件:
{
"routes": [
{
"route": "/*",
"serve": "/index.html",
"statusCode": 200
}
],
"mimeTypes": {
"json": "application/json",
"webmanifest": "application/json"
}
}
但没有成功。
当我将相同的应用程序部署到 Azure Web App 时web.config
<staticContent>
<mimeMap fileExtension="webmanifest" mimeType="application/json" />
<mimeMap fileExtension="json" mimeType="application/json" />
</staticContent>
PWA 是可安装的。
谢谢。