This repository has been archived on 2025-09-29. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/webpack.mix.js

20 lines
401 B
JavaScript

let mix = require('laravel-mix')
require('laravel-mix-purgecss')
mix.disableNotifications()
.postCss('resources/css/app.css', 'source/dist', [
require('tailwindcss')(),
require('postcss-nested')(),
])
.browserSync({
proxy: 'localhost:8000',
notify: false,
open: false,
files: [
'output_*/**/*'
]
})
.purgeCss({
folders: ['output_*', 'resources']
})