From 9d1a810fa983a045294e6d0b8ad761f5dbfb8939 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 5 Dec 2018 17:31:36 +0100 Subject: Initial commit (actually already finished) --- webpack.mix.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 webpack.mix.js (limited to 'webpack.mix.js') diff --git a/webpack.mix.js b/webpack.mix.js new file mode 100644 index 0000000..19a48fa --- /dev/null +++ b/webpack.mix.js @@ -0,0 +1,15 @@ +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'); -- cgit v1.2.3