Dimitar Nikovski

Results 7 comments of Dimitar Nikovski

@berkayk if you are using setState this means and async update is scheduled, so your previous render doesn't have the children? It depends on where you are calling setState, I...

I use this package with react-router 5.0.0 ```ts import { createBrowserHistory } from "history"; import { Router } from 'react-router'; import MatomoTracker from 'piwik-react-router'; const history = MatomoTracker.connectToHistory(createBrowserHistory()); const App...

Excellent, many thanks for this solution and the edits, I wish there was an alpine-ready version out of the box.

This issue causes various tools to break, a tiny merge of #31 will fix this

Hi @ketysek What I have temporarily added to my `registerServiceWorker.ts` is : ```js const WORKBOX_CACHE_KEY = `workbox-precache-https://${window.location.hostname}/`; const clearFromCache = async (requests: string[]) => { if ('caches' in self) {...

@ketysek actually the cache is where workbox stores all of the files under its own `workbox-precache-https://${window.location.hostname}/` namespace. I manged to get it all sorted by adding `process.env.BUILD_TIME = new Date()`...

@tobias-tengler agreed about the priority, this has caused me massive pain in production