I'm using official vue-cli scaffolder and trying to include normalize.css in App.vue this way
<style scoped>
@import "/node_modules/normalize.css/normalize.css";
.app {
font-family: Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
max-width: 1000px;
margin: auto;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
</style>
But after compiling css doesn't include in style tag or as external file:
So, how can I correctly include this or another css file?