Skip to content

Instantly share code, notes, and snippets.

@kkrieger85
Forked from skydiver/app.scss
Created June 18, 2020 12:50
Show Gist options
  • Save kkrieger85/989930b3c5d4b9fffe6e2f78b49c2bcb to your computer and use it in GitHub Desktop.
Save kkrieger85/989930b3c5d4b9fffe6e2f78b49c2bcb to your computer and use it in GitHub Desktop.
Laravel + Tailwind CSS + Hot Reload
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
const mix = require('laravel-mix');
const tailwindcss = require('tailwindcss')
/*
|--------------------------------------------------------------------------
| 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');
mix.sass('resources/sass/app.scss', 'public/css')
.options({
processCssUrls: false,
postCss: [tailwindcss('tailwind.config.js')],
})
if (mix.inProduction()) {
mix.version();
}
mix.browserSync({
ui: false,
injectChanges: true,
notify: false,
proxy: '127.0.0.1:8000',
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment