[Vuejs]-SassError: File to import not found or unreadable: style.scss

0👍

Your file name is “styles” not “style”.

Try one of those three file path options you listed above. I’m pretty sure either @import '/styles.scss'; or @import '../styles.scss'; should work for you.

Leave a comment