Skip to content

Instantly share code, notes, and snippets.

@areindl
Created November 13, 2019 09:29
Show Gist options
  • Save areindl/5342e24948245d4b046c5bfec862ddeb to your computer and use it in GitHub Desktop.
Save areindl/5342e24948245d4b046c5bfec862ddeb to your computer and use it in GitHub Desktop.
Laravel Mix Config
const mix = require('laravel-mix');
const path = require('path');
/*
|--------------------------------------------------------------------------
| 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.webpackConfig({
resolve: {
alias: {
"@": path.resolve(__dirname, "resources/js/")
}
}
});
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