[Vuejs]-Vuejs App works in dev breaks in production — build errors

0👍

Problem

I had comments in my .scss files that were syntactically incorrect:

// this type of comment is for css files

/* this type of comment is for .scss files

Solution

I removed the comments from the .scss files and ran the build — worked perfectly.

Thanks again for offering your help.

Leave a comment