Closed MeanBoyCousin closed 9 months ago
are you using tsconfig path aliases ? can you use importMap
as described here ?
Yeah, I did try this. Unless I was configuring it wrong, it didn't solve the problem. For the below setup, what is the configuration?
// tsconfig.json
"paths": {
"@/*": ["./src/*"],
"tv/*": ["./public/trading_view/*"],
}
I tried it as a comma-separated list of strings, an array and an object.
if you are importing Panda stuff like import { css } from '@/styled-system/css'
then the matching importMap
is importMap: "@/styled-system"
Amazing, thank you very much. I clearly did not spend enough time reading that documentation!
Description
When upgrading to 0.27.3 or above, I expect that when booting my NextJS app the styles are applied. However, no styles seem to be applied.
JS Framework
NextJS 14
Panda CSS Version
0.27.3+
Operating System
Additional Information
Reverting this specific change made in this PR fixes the issue for me and lets me upgrade to the latest version.