2019-03-28 08:52:08 +00:00
|
|
|
let mix = require('laravel-mix')
|
2019-03-17 22:50:21 +00:00
|
|
|
|
2019-03-28 08:52:08 +00:00
|
|
|
mix.disableNotifications()
|
2019-06-07 21:18:43 +00:00
|
|
|
|
|
|
|
mix.postCss('resources/css/app.css', 'style.css', [
|
|
|
|
require('postcss-import')(),
|
|
|
|
require('tailwindcss')(),
|
|
|
|
require('postcss-nested')()
|
|
|
|
])
|
|
|
|
|
|
|
|
mix.browserSync({
|
|
|
|
proxy: 'wordcamp2019.docksal',
|
|
|
|
notify: false,
|
|
|
|
open: false,
|
|
|
|
files: ['**/*.php', {
|
|
|
|
match: 'style.css',
|
|
|
|
fn: function (event, file) { this.reload() }
|
|
|
|
}]
|
|
|
|
})
|