I'm trying to populate an scss
file for the Vue-cli
project in App.vue which has been
<style lang="scss">
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i|Rubik:300,400,500,700,700i,900');
@import "../node_modules/bootstrap/scss/bootstrap";
@import "./assets/css/style";
</style>
From node modules bootstrap SCSS
work properly, but it's not working when I kept style.scss
on assets folder !
<style>
and not in<script>
– A. L