Angular Service Worker - dataGroups not working Angular Service Worker - dataGroups not working angular angular

Angular Service Worker - dataGroups not working


I found a solution to this, my api and ui were not on the same server, after changing them on the same one, and updating the config to the code bellow, and using HTTPS on my site, everything worked perfectly:

"dataGroups": [    {      "name": "api-performance",      "urls": [        "/shipments"      ],      "cacheConfig": {        "strategy": "performance",        "maxSize": 100,        "maxAge": "3d"      }    }  ]