Skip to content

Instantly share code, notes, and snippets.

@akmalhazim
Last active December 17, 2018 09:59
Show Gist options
  • Save akmalhazim/3dbee521cfa498069f8bfc67d7c6bca4 to your computer and use it in GitHub Desktop.
Save akmalhazim/3dbee521cfa498069f8bfc67d7c6bca4 to your computer and use it in GitHub Desktop.
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.webpackConfig({
resolve: {
alias: {
'~': path.join(__dirname, './resources/js/'),
'@': path.join(__dirname, './resources/js/components/')
}
}
})
mix.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css')
.copy('resources/assets/templates/tabler/dist/assets', 'public/tabler/assets');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment