Sass in Laravel 5.4 Sass in Laravel 5.4 laravel laravel

Sass in Laravel 5.4


If you've upgraded to Laravel Mix along with 5.4 then the syntax has changed. You should now use Sass the expected way. Create an app.scss file as the entry to your stylesheet, then use the @import tag to import other stylesheets.

@import 'file_1.scss';@import 'file_2.scss';@import 'file_n.scss';