bulma-list icon indicating copy to clipboard operation
bulma-list copied to clipboard

Cant find the stylesheet to import

Open alagu031325 opened this issue 1 year ago • 1 comments

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

alagu031325 avatar Oct 08 '24 17:10 alagu031325

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";

bluefantail avatar Jan 16 '25 02:01 bluefantail