[Vuejs]-Sass instead of Stylus in VueJs Hackernews 2.0

0👍

Your vue-loader config seems perfect according to official documentation.
However in your CSS you’re missing a semicolon
you have to change this:

body {
  background: #000
}

to this one:

body {
  background: #000;
}

Leave a comment