Skip to content

Instantly share code, notes, and snippets.

@skydiver
Created May 23, 2020 19:33
Show Gist options
  • Save skydiver/c6330de0f7d8567ae3211ff2488154b4 to your computer and use it in GitHub Desktop.
Save skydiver/c6330de0f7d8567ae3211ff2488154b4 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',
});
@skydiver
Copy link
Author

skydiver commented May 23, 2020

Manually update files

  • Open your package.json and replace dev script with:
    "dev": "concurrently \"npm run watch\" \"php artisan serve\" --kill-others",
  • Open your layout blade file and add:
    <link href="{{ asset('css/app.css') }}" rel="stylesheet">
  • Add to your .gitignore
/public/css/app.css
/public/js/app.js
/public/mix-manifest.json

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment