我正在从事一个同时使用SSR和SW的项目。
SSR在首次渲染时以及爬虫读取页面时均能完美运行。
另一方面,服务人员也工作得很好。
但是在Service Worker缓存 index.html 文件之后会发生问题。
以下是重现问题的步骤:
我正在使用Angular 7.0
这是我正在使用的 ngsw-config.json :
{
"index": "/index.html",
"assetGroups": [
{
"name": "app",
"installMode": "prefetch",
"updateMode": "prefetch",
"resources": {
"files": ["/favicon.ico", "/index.html", "/*.css", "/*.js"]
}
},
{
"name": "assets",
"installMode": "lazy",
"updateMode": "prefetch",
"resources": {
"files": ["/assets/**"]
}
}
],
"dataGroups": [
{
"name": "api",
"urls": ["https://example.com/**"],
"cacheConfig": {
"maxSize": 30,
"maxAge": "1d",
"timeout": "30s",
"strategy": "freshness"
}
}
]
}