Otavio David
Otavio David
+1 for the Immer integration!
I can confirm that this is _still_ an issue. @phil-lgr's fix does work. RuntimeFn is not seen as an export from where the declaration tries to import it.  Highlighting...
yep. on the official repositories I could only find the appmenu module for qt. apparently there's this: https://pkgs.org/download/appmenu-gtk3 however I dislike the idea of downloading random binaries without proper repos.
huh. it's working on brave with tampermonkey
I can confirm that this problem also occurs on the esbuild plugin. The built files get prepended with a bunch of imports referencing non-existent vanilla css files.
This PR itself needs some updating. The merge conflicts, but that's easily fixable. Also, a check for typeof ```identOption === "function"``` in line 25 and 57 for transform.ts in the...
Both the workaround and fix don't work on my next js setup. This is a huge blocker for us :/ Update: After updating the packages and moving some things around,...
> It looks like this is more of a feature request than a bug. Shipping styles without compilation isn't really how Vanilla Extract is meant to be used. As a...
> It gets complex in the context of Next.js because it [doesn't transpile node_modules](https://github.com/vercel/next.js/issues/706#issuecomment-911559308) out of the box. As I stated in a previous edit, I think this is a...
I think I found a definitive fix. Make this change to your next.config.js: ```ts /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, webpack(config, options) { config.module.rules.unshift({ test: /@your-theme-scope/,...