Workers Cache vs Pages Cache

I'm seeing intermittent issues where font awesome icons are rendered strangely. I dealt with this when our app was on pages and resolved it by purging the cache via our github action

            - name: Purge Cache
              run: |
                  curl -X POST "https://api.cloudflare.com/client/v4/zones/${{ env.CLOUDFLARE_PROJECT_NAME }}/purge_cache" \
                  -H "Content-Type: application/json" \
                  -H "Authorization: Bearer ${{ secrets.CLOUDFLARE_API_TOKEN }}" \
                  -d '{ "purge_everything": true }'


It doesn't seem like this same strategy will work for workers. What is the recommended approach?
image.png
Was this page helpful?