Working With Stylesheets
Working With Stylesheets
Less
elixir( function( mix ){
mix.less( "app.less" );
} );elixir( function( mix ){
mix.less( [
"app.less",
"controllers.less"
] );
} );elixir( function( mix ){
mix.less( "app.less", "includes/stylesheets" );
} );
// Specifying a specific custom output filename...
elixir( function( mix ){
mix.less( "app.less", "includes/stylesheets/style.css" );
} );Sass
Combine CSS
Combine Folders
Combine CSS From Anywhere
Source Maps
Other Pre-processors
Last updated