Josh Lind
Josh Lind
FYI: My first instinct was to reach for `@types/react-images` ...but that only exports a `Lightbox` and `Image` (missing both `Modal` and `ModalGateway`)
Believe I found it, the other entry in `package.json`... SHOULD BE: `"types": "index.d.ts",` CURRENTLY: `"types": "./index.d.ts",`
This allows node to run and actually start the app, but the connection is still never made to the debugger so no data ever comes back in the panel ;(
Same problem-- how to manage various audio files and trigger them as part of other code. Seems so basic, but managing the memory and file loading is immediately confusing. Also,...
This will play an mp3 file by name... https://github.com/doublejosh/AudioPlayground/blob/main/AudioPlayground.ino There seem to be a lot of click/pop issues though... - https://github.com/earlephilhower/ESP8266Audio/issues/406 - https://github.com/earlephilhower/ESP8266Audio/issues/476 - https://github.com/earlephilhower/ESP8266Audio/issues/349 - https://github.com/earlephilhower/ESP8266Audio/issues/329 - https://github.com/earlephilhower/ESP8266Audio/issues/246
Are you using the same file buffer variable? Did you upload the other file, perhaps it's just not there?
Same thing. I'm in Gatsby 3 still, but the two variables are switched!!! ```javascript export const onPreRouteUpdate = ({ location, prevLocation }) => { // location = previous location //...
Is there a bug report for this? @jjang16 Otherwise, it should not be closed.
This happens when trying to setup the Gatsby-Contentful starter. Pretty bad first time dev experience.
I'm trying to do something similar with categories... (**show other posts referencing the same category**). I've generated category pages with all posts referencing the category… but really struggling from the...