Skip to content

Commit

Permalink
use postCss default instead of sass
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jun 18, 2020
1 parent a429eab commit 588247b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 1 addition & 3 deletions package.json
Expand Up @@ -14,8 +14,6 @@
"cross-env": "^7.0",
"laravel-mix": "^5.0.1",
"lodash": "^4.17.13",
"resolve-url-loader": "^3.1.0",
"sass": "^1.15.2",
"sass-loader": "^8.0.0"
"resolve-url-loader": "^3.1.0"
}
}
1 change: 0 additions & 1 deletion resources/sass/app.scss

This file was deleted.

6 changes: 4 additions & 2 deletions webpack.mix.js
Expand Up @@ -6,10 +6,12 @@ const mix = require('laravel-mix');
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel application. By default, we are compiling the Sass
| for your Laravel applications. By default, we are compiling the CSS
| file for the application as well as bundling up all the JS files.
|
*/

mix.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css');
.postCss('resources/css/app.css', 'public/css', [
//
]);

0 comments on commit 588247b

Please sign in to comment.