Closed JagritGumber closed 1 month ago
Thanks for raising the issue @JagritGumber
We got this warning recently when we we updated the dependencies in the project. We don't use any Sass api's ourselves, so this is probably something caused by how Vite works with the new version of sass.
We will look into it, but you don't have to worry about it causing problems in the meantime, just a warning.
I've found this issue in the meantime.
We have fixed this by using this setting:
css: {
preprocessorOptions: {
scss: {
api: 'modern',
},
},
}
Only thing is that we can only do this in the astro integration. I still want everything to work fine without a need for the integration, so for now I downgraded sass to v1.78.0.
This will remove the warning and also makes the components usable without the astro integration. We plan to add more options etc via the integration, improve the documentation on it, and test/support the astro add
command. When we do this and using the integration will be easier, we will bump up sass again.
Describe the bug
So I have been getting this error in my command line as soon as I installed
fulldev-ui
Error:I am having this only with the combination of postcss, if I use post css as is, I have no errors, If I use just the ui library I have no errors, I am only getting errors with the combination of using both of them
This is my postcss.config.cjs
Affected component/components/documentation
None
How to reproduce
Logs
Before submitting