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;
}
Source:stackexchange.com