Elmosh
Elmosh
Any update? same issue, also it fails the built when using next --turbo, it would be great if this can be fixed
hey @owenpearson , I just migrated to npm just to fix this error, yet the same issue still failing the build.
> I'm also experiencing some turbo-related issues, specifically with compilation of the tailwind plugin: > > ``` > ./src/styles/globals.css:850:30 > Parsing css source code failed > 848 | --background: ({...
> FWIW, I just decided to try out the @nextui-org/react ([@nextui](https://nextui.org/)) component lib in a new project. Getting this w/ dev turbo: > > ``` > ./src/styles/globals.css:421:30 > Parsing css...
It turned out my issue was caused by a custom tailwind plugin: ```js function addVariablesForColors({ addBase, theme }) { let allColors = flattenColorPalette(theme("colors")); let newVars = Object.fromEntries( Object.entries(allColors).map(([key, val]) =>...
Same errors on page reload after updating to v2.
1. Yes the app and ably continued to work after the errors, and after a while the errors gets repeated again. 2. The errors where so intrusive so I didn't...
@VeskeR I will be happy to test the new v2 versions once you work the errors out. --- You are correct I used `skip` with v1, I tried `subscribeOnly` and...
It turned out this issue wasn't cased by nextui but by a custom tailwind plugin: ```js function addVariablesForColors({ addBase, theme }) { let allColors = flattenColorPalette(theme("colors")); let newVars = Object.fromEntries(...