Cant find the stylesheet to import
Error: Can't find stylesheet to import. ╷ 1 │ @use "node_modules/bulma/sass/utilities/mixins" as mixins; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules/bulma-list/sass/bulma-list.scss 1:1
I think the node_modules is generated in the parent folder and not in the sass folder itself where bulma-list.scss exists. So it couldnt find the reference to the stylesheet. If I mention as ../node_modules/ then it works well.
Will there be any fix for it or any suggestions pls
Some stuff has been updated to do with the import setup etc in v3 did you want to have a go with that again now and see if it's cleared things up for you?
Should be looking at something along the lines of:
@use "bulma/sass/utilities/mixins" as mixins;
// Whatever the rest of your Bulma imports are
@use "bulma-list/sass/bulma-list.sass";