Skip to content

Instantly share code, notes, and snippets.

@zorca
Created November 26, 2020 12:54
Show Gist options
  • Save zorca/bcdb0bdeb05027a616405da3a5d07d91 to your computer and use it in GitHub Desktop.
Save zorca/bcdb0bdeb05027a616405da3a5d07d91 to your computer and use it in GitHub Desktop.
const mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel application. By default, we are compiling the Sass
| file for the application as well as bundling up all the JS files.
|
*/
mix.js('resources/js/app.js', 'public/js');
const tailwindcss = require('tailwindcss')
mix.sass('resources/sass/app.scss', 'public/css')
.options({
processCssUrls: false,
postCss: [ tailwindcss('tailwind.config.js') ],
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment