use postCss default instead of sass

This commit is contained in:
Taylor Otwell 2020-06-18 15:26:58 -05:00
parent a429eab2d4
commit 588247b790
3 changed files with 5 additions and 6 deletions

View File

@ -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"
}
}

View File

@ -1 +0,0 @@
//

6
webpack.mix.js vendored
View File

@ -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', [
//
]);