Change src to assets

This commit is contained in:
Oliver Davies 2019-05-08 08:38:37 +01:00
parent 168d1a5ee7
commit 087aefffdc
10 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
let mix = require('laravel-mix')
mix.disableNotifications()
.postCss('src/css/style.css', '', [
.postCss('assets/css/style.css', '', [
require('tailwindcss')(),
require('postcss-nested')(),
])
@ -10,6 +10,6 @@ mix.disableNotifications()
notify: false,
files: [
'**/*.php',
'src/css/**/*.css'
'assets/css/**/*.css'
],
})