Just added the package normalize-scss to my new Vue project, but none of the styles are being applied... I've tried both:
@import 'normalize-scss' in my styles.scss
import 'normalize-scss' in my main.js page
Am I doing something wrong? The package is clearly there because the app runs, but it doesn't actually apply any css rules.
Not sure if this is the correct way to do this but, if you are using vue-templates maybe you can try to import the style doing this:
Also remember, do not use
scopedin the style-tags. You also need,scss loaderandnode-sassto make this work.