Kevin

Results 12 comments of Kevin

Thanks for your PR! Since I've merged #4 this branch would conflict with master, but I still like the idea of showing it's just three simple steps. Would it be...

What about installing `babel-preset-gatsby` and `babel-plugin-prismjs` and creating a custom `.babelrc` file which specifies used languages: ``` { "presets": [ [ "babel-preset-gatsby" ] ], "plugins": [ [ "prismjs", { "languages":...

Can easily be solved by implementing this wrapper on your own - it's ~30 lines. ```typescript import { useEffect, useRef, VoidFunctionComponent } from "react"; import { default as TypedLib }...

Same error. Next.js 12 Custom `_document.ts` with ``` import { Head, Html, Main, NextScript } from "next/document"; export default function Document() { return ( ); } ``` Added init to...

> > https://github.com/zhex900/push-msg > > @nehalist you resolved this error? "Solved" isn't probably the right word, but adding `OneSignalSDKUpdateWorker.js` and `OneSignalSDKWorker.js` into my public directory solved some issues. HMR is...

The PR for this fix has already been merged; https://github.com/plouc/nivo/pull/2452 - unfortunately no new version has been released since.

@sgress454 here you go; https://github.com/nehalist/sails-hook-autoreload-issue-60 Fresh install. Problem seems to have nothing to do with sails-permissions, but with sails-auth. After installing sails-auth autoreload fails with the error mentioned in the...

The feature image doesn't even use `object-fit: cover` https://github.com/nehalist/gatsby-theme-nehalem/blob/b2c339fcf7c859cb37e81f0e461c7801bfff27d0/theme/src/components/card/style.tsx#L32-L56 Or am I missing something here?

Seems like it's pretty dead, especially since the author simply deletes a comment mentioning an alternative instead of commenting on the issue itself.

I'm not using this template specifically, but can't you just change ``` "@/*": ["./*"] ``` to ``` "@/*": ["./src/*"] ``` within the `tsconfig.json`?