-
Thought it was a general issue about monorepos at #847 but turns out I had misconfigured that repro case. But I'm still not sure why when I try to do this in another test project that already uses vanilla-extract that it seems to fail. So basically i get this markup: but the and even eradicating all traces of vanilla extract doesn't help: osdiab/personal-website#12 At a loss for what I'm doing wrong and would appreciate some guidance if anyone might know where I've turned astray. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I think I figured it out, I was using TypeScript paths to alias |
Beta Was this translation helpful? Give feedback.
I think I figured it out, I was using TypeScript paths to alias
src/*
to@/*
which NextJS natively supports, but doing so apparently breaks Panda. If I refer to it using not the alias but instead using a relative path, then it works. Looking into see if there's a way to get around that issue.