UNPKG

laravel-mix-bundle-analyzer

Version:
13 lines (11 loc) 265 B
const mix = require('laravel-mix'); /** * Determine if Mix should watch files for changes. */ if (!mix.isWatching) { mix.isWatching = () => { return ( process.argv.includes('--watch') || process.argv.includes('--hot') ); }; }