Tanner Morgan

Results 5 comments of Tanner Morgan

Honestly, the queue page is the only place I've looked so far 🙃. I did peruse the codebase a bit to see if I could find a culprit but I'm...

When I set `CHOKIDAR_USEPOLLING=false`, the CPU load goes way down, but then I lose HMR. And when doing development on the app, that means I have to restart the container...

I added the following to my nuxt.config.ts with no luck. Still high CPU usage. ``` experimental: { watcher: 'chokidar', watchers: { chokidar: { usePolling: true, interval: 100, ignored: ['**/node_modules/**', '**/pv-presets/**']...

Using the html tag instead of the body tag seems to resolve the issue (if it's an issue). The `toggleColorScheme()` function changed from ```javascript function toggleColorScheme() { isDarkMode.value = !isDarkMode.value;...

It works fine on my local machine now, but when I deploy it, it doesn't work. However, I've recently learned of the limitations of Cloudflare Workers (this app is deployed...