Last active
March 25, 2021 08:56
-
-
Save folbert/c7bd2a784a1d907d83ef53428008c272 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const mix = require('laravel-mix'); | |
require('@tinypixelco/laravel-mix-wp-blocks'); | |
require('laravel-mix-purgecss'); | |
require('laravel-mix-copy-watched'); | |
/* | |
|-------------------------------------------------------------------------- | |
| Mix Asset Management | |
|-------------------------------------------------------------------------- | |
| | |
| Mix provides a clean, fluent API for defining some Webpack build steps | |
| for your Sage application. By default, we are compiling the Sass file | |
| for your application, as well as bundling up your JS files. | |
| | |
*/ | |
mix.setPublicPath('./dist') | |
.browserSync('https://domain.test'); | |
mix.sass('resources/assets/styles/app.scss', 'styles') | |
.sass('resources/assets/styles/editor.scss', 'styles') | |
.sass('resources/assets/styles/bootstrap-ie11.scss', 'styles') | |
.sass('resources/assets/styles/admin.scss', 'styles') | |
/*.purgeCss({ | |
whitelist: require('purgecss-with-wordpress').whitelist, | |
whitelistPatterns: require('purgecss-with-wordpress').whitelistPatterns, | |
})*/; | |
mix.js('resources/assets/scripts/app.js', 'scripts') | |
.js('resources/assets/scripts/customizer.js', 'scripts') | |
.blocks('resources/assets/scripts/editor.js', 'scripts') | |
.extract(); | |
mix.copyWatched('resources/assets/images/**', 'dist/images', { base: 'resources/assets/images' }) | |
.copyWatched('resources/assets/fonts/**', 'dist/fonts'); | |
mix.autoload({ | |
jquery: ['$', 'window.jQuery'], | |
}); | |
mix.options({ | |
processCssUrls: true, | |
}); | |
mix.sourceMaps(false, 'source-map') | |
.version(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment