Skip to content

Instantly share code, notes, and snippets.

@daronspence
Created April 27, 2019 14:35
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 daronspence/24e6fd9746a4f893a6dfd86c94fed866 to your computer and use it in GitHub Desktop.
Save daronspence/24e6fd9746a4f893a6dfd86c94fed866 to your computer and use it in GitHub Desktop.
Laravel Mix with Sass and Tailwind 1.0 Configuration
const mix = require('laravel-mix');
require('laravel-mix-tailwind');
/*
|--------------------------------------------------------------------------
| 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')
.sass('resources/sass/app.scss', 'public/css')
.options({
postCss: [require('tailwindcss')]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment