Justin Mahar
Justin Mahar
tl;dr: Ran into something similar. **My solution was to replace all dashes in the identifier with an underscore**, then it magically worked. ```js const disqusPostId = postId.split('-').join('_'); ``` --- On...
Is this still an issue for you?
Interesting. I have CoffeeScript installed, yet autocomplete is working fine. A short while ago, I merged in a pull request that broke autocomplete. This has since been resolved. Autocomplete works...
If you want to give this a shot, just copypasta the following. Then, hit ctrl+space after `woot.` ``` class HelloCoffee constructor: -> woot = "Woot!" # After the dot, you...
Does something like the following work for you? If so, then autocomplete will work. Otherwise, it's not going to work as the plugin is limited to CS classes. Backbone classes...
Related to https://github.com/justinmahar/react-social-media-embed/issues/11
Same here. Using any setter with "replaceIn" causes my Gatsby site to render a 404.
Looks like at the heart of the plugin it's wrapping the root element with a `QueryParamProvider` from the `use-query-params` package. Without it, use-query-params complains that it needs to consume that...
## Workaround 💪 #### UPDATE: You can try the [Replacement Hook Solution](https://github.com/alexluong/gatsby-packages/issues/41#issuecomment-1126779816) below which makes this plugin obsolete. --- I realized this had something to do with Reach router detecting...
## Replacement Hook Solution I've created a hook solution that incorporates the suggestions from @dumle11 above to eliminate the need for this plugin altogether. This hook solution is now available...