summaryrefslogtreecommitdiff
path: root/webpack.mix.js
diff options
context:
space:
mode:
authorhorus2020-02-23 23:11:03 +0100
committerhorus2020-02-23 23:11:03 +0100
commit2cd1589d6ae7095770e8c5dda10b138861d70501 (patch)
tree7afe6ce2f5f435e375a56c0dd627bd1716a1dbe9 /webpack.mix.js
downloadsenpai-2cd1589d6ae7095770e8c5dda10b138861d70501.tar.gz
Initial commit. Calendar is working.
Diffstat (limited to 'webpack.mix.js')
-rw-r--r--webpack.mix.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/webpack.mix.js b/webpack.mix.js
new file mode 100644
index 0000000..8a923cb
--- /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');