Sam Margalit
Sam Margalit
Would love if this also exposed a method that prepended the baseUrl. My specific use case is copying a link to the clipboard for sharing.
I had similar issues in a pnpm monorepo and was able to resolve it by adding and explicitly importing `@vanilla-extract/private` at the top of my theme.css.ts file eg: ```typescript import...
I'm seeing the same error when trying to import a client compound component in a server component, eg: ```typescript import List from './List'; export default function Home() { return (...
Thanks! In the meantime it is at least possible to get the types for css from styleX: ```typescript // types.d.ts declare module "react-strict-dom" { // CSS is a re-export of...