Carl Assmann
Carl Assmann
I was considering Lumino to handle window management in a React application. Inspired by @kinow 's work but with a slightly different approach I was able to draw widgets that...
Try changing your `updateChart` like so: ```javascript const updateChart = () => { const newSeries = [1, 2, 3, 4, 5]; // update a nested property of state (method 2)...
Assuming, the error only happens when rendering, you can try the following: ```javascript import Chart from "react-apexcharts"; const MyComponent = () => { const isSSR = typeof window === undefined;...
I just saw that this library is accessing `window` when it's imported: https://github.com/apexcharts/react-apexcharts/blob/be616b8d5922696419f6edaadf2ff9453d6fa615/src/react-apexcharts.jsx#L5 My solution from above does not work here. You need to import `react-apexcharts` inside a `useEffect` hook,...
Is this the same question as https://github.com/apexcharts/react-apexcharts/issues/358 ?
I'm using Gitpod instead of Codesandbox because of this 🤷♂️
I experience this issue when using `nodemailer` in my action: `Uncaught Error: Dynamic require of "events" is not supported`
Experiencing this with `firebase-admin` as well. ``` chunk-UPHRXYOG.js:13 Uncaught Error: Dynamic require of "fs" is not supported at chunk-UPHRXYOG.js:13 at node_modules/firebase-admin/lib/app/credential-internal.js (credential-internal.js:21) at __require2 (chunk-UPHRXYOG.js:19) at node_modules/firebase-admin/lib/utils/index.js (index.js:21) at __require2...
[Here](https://github.com/ccssmnn/remix-nodemailer-error) is a minimal reproduction on remix crashing, when `nodemailer` is imported directly in a route vs being imported from `entry.server.tsx`. I have to use the second approach for server...
I'm also interested in this feature. I would love to create presigned URLs for uploads to save bandwidth and avoid file size limitations, while using our own server for most...