Skip to content

Instantly share code, notes, and snippets.

@avosalmon
Created December 14, 2018 11:22
Show Gist options
  • Save avosalmon/222d625ec6b243fea8de9960aa3f3929 to your computer and use it in GitHub Desktop.
Save avosalmon/222d625ec6b243fea8de9960aa3f3929 to your computer and use it in GitHub Desktop.
Laravel Mix default config
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')
.sass('resources/sass/app.scss', 'public/css');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment