Ok. So this is my first lLaravel project. And I got into an odd issue. I am trying to customize the authentication forms by using bootstrap and my own added SASS files (which then are converted into the main app.css). So here is what is the issue: in the app.scss file I have imported the SASS partials and other external resources:
- // Fonts
- @import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600);
- // Variables
- @import "variables";
- // Bootstrap
- @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
- // ADDED Login
- @import "login";
In this form, when the app.scss file is translated into the app.css, I receive an error "File to import not found or unreadable: node_modules/bootstrap-sass/assets/stylesheets/bootstrap. on line 6 of resources/assets/sass/app.scss". Anyone has any idea on how to fix this, suggestions on how to manage my css and sass files? Thank you in advance for your time.
npm install
? – Amit Guptanode_modules
folder and everything in it? – Amit Gupta