Mads Thines
Mads Thines
@mrmckeb > Sorry for the slow reply, I was moving country (back in Australia now) and obviously that's eaten a lot of my time. > > Can someone provide a...
I think it might be related to using sass variables in `@media` selectors, as I can see I get the same issue without the `#{}` syntax. ## Works ```scss .container...
I think it's related to https://github.com/mrmckeb/typescript-plugin-css-modules/issues/146. Trying to add the variable directly to the `scss` fixed the error. I have a SCSS configuration in my `NextJS` app which includes all...
> I think it's related to #146. > > Trying to add the variable directly to the `scss` fixed the error. I have a SCSS configuration in my `NextJS` app...
@kirill-martynov No and I'm still frustrated by it. I really want this plugin to work. @mrmckeb 🙏
Thanks for the suggestion @kirill-martynov! I didn't know that postcss plugin, so I will be starting to use that, as I've been frustrated with CSS variables not working for media...
Applying this patch resolved my issue :) I'm using `yarn@3`. `tsconfig-paths-webpack-plugin-npm-3.5.2-7d7e8a5739.patch` ```patch diff --git a/lib/plugin.js b/lib/plugin.js index fb5c8135527f8abf9671ccc8ab6a2e16efe5d5a8..c350b4993b0db61212bf2427ca45e52860898ca7 100644 --- a/lib/plugin.js +++ b/lib/plugin.js @@ -14,7 +14,7 @@ class TsconfigPathsPlugin {...
I found a temporary solution, which is to skip the `initializeState` logic, and just use the regular `useSetRecoilState` before mounting the rest of the app. This is really not ideal,...
@drarmstr That sounds better. Would that be using the `setSelf`? If not, can you you provide an example of how to set the initial value in the effect instead? Awesome...
@drarmstr Sorry, never mind I figure out by following the docs 🤷 ... I had the issue that I needed to await to get the value from localForage indexedDB, so...