wordcamp-bristol-2019/wp-content/themes/twentynineteen-tailwindcss/webpack.mix.js

22 lines
423 B
JavaScript
Raw Normal View History

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-05-08 14:05:10 +00:00
.postCss('assets/css/main.css', 'style.css', [
require('tailwindcss')(),
2019-03-28 08:52:08 +00:00
require('postcss-nested')(),
])
.browserSync({
proxy: 'wordcamp2019.docksal',
notify: false,
2019-05-08 13:50:34 +00:00
open: false,
2019-03-28 08:52:08 +00:00
files: [
'**/*.php',
{
match: 'style.css',
fn: function (event, file) {
this.reload()
}
}
]
2019-03-28 08:52:08 +00:00
})