我有一个来自外部示例的图像源,例如https://cdn.myserver.com.background.jpg
,我无法通过服务人员缓存它,当图像来自资产文件夹时它可以工作,但外部图像链接不缓存。
请给我任何建议。谢谢
{
"index": "/index.html",
"assetGroups": [
{
"name": "app",
"installMode": "prefetch",
"resources": {
"files": [
"/favicon.ico",
"/index.html"
],
"versionedFiles": [
"/*.bundle.css",
"/*.bundle.js",
"/*.chunk.js"
]
}
},
{
"name": "assets",
"installMode": "lazy",
"updateMode": "prefetch",
"resources": {
"files": [
"/assets/**"
]
}
}
],
"dataGroups": [
{
"name": "api-performance",
"urls": [
"http://127.0.0.1:3000/**"
],
"cacheConfig": {
"maxSize": 100,
"maxAge": "3d",
"strategy": "performance"
}
}
]
}