Back to sass

This commit is contained in:
Oliver Davies 2018-12-07 22:45:27 +00:00
parent 4a140df2a6
commit 19d4f8bc1b
36 changed files with 176 additions and 276 deletions

View file

@ -4,9 +4,8 @@ require('laravel-mix-purgecss');
require('laravel-mix-tailwind');
mix.disableNotifications()
.postCss('assets/css/app.css', 'source/css')
.sass('assets/sass/app.sass', 'source/css')
.js([
// 'node_modules/highlightjs/highlight.pack.js',
'node_modules/jquery/src/jquery.js',
'assets/js/app.js',
], 'source/js/all.js')
@ -19,11 +18,4 @@ mix.disableNotifications()
],
whitelistPatterns: [/language/, /hljs/],
whitelistPatternsChildren: [/^markdown$/]
})
.options({
postCss: [
require('postcss-import')(),
require('postcss-nested')(),
],
processCssUrls: false,
});