Skip to content

Instantly share code, notes, and snippets.

@thomasjulienalain
Last active September 8, 2020 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasjulienalain/6764754618334a7c104fbed7289954a8 to your computer and use it in GitHub Desktop.
Save thomasjulienalain/6764754618334a7c104fbed7289954a8 to your computer and use it in GitHub Desktop.
Laravel mix, enable different PostCss plugins asset based.
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('lindamartineau.local');
mix.sass('resources/assets/styles/app.scss', 'styles')
.options({
processCssUrls: false,
postCss: [
require('tailwindcss')('./tailwind.config.js'),
]
});
mix.sass('resources/assets/styles/editor.scss', 'styles')
.options({
processCssUrls: false,
postCss: [
require('tailwindcss')('./tailwind.config.js'),
require('postcss-editor-styles'),
]
});
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')
.copyWatched('resources/assets/fonts/**', 'dist/fonts');
mix.autoload({
jquery: ['$', 'window.jQuery'],
});
/* mix.options({
processCssUrls: false,
postCss: [
require('tailwindcss')('./tailwind.config.js'),
]
}); */
mix.sourceMaps(false, 'source-map')
.version();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment