diff options
| author | horus | 2020-02-23 23:11:03 +0100 |
|---|---|---|
| committer | horus | 2020-02-23 23:11:03 +0100 |
| commit | 2cd1589d6ae7095770e8c5dda10b138861d70501 (patch) | |
| tree | 7afe6ce2f5f435e375a56c0dd627bd1716a1dbe9 /webpack.mix.js | |
| download | senpai-2cd1589d6ae7095770e8c5dda10b138861d70501.tar.gz | |
Initial commit. Calendar is working.
Diffstat (limited to 'webpack.mix.js')
| -rw-r--r-- | webpack.mix.js | 15 |
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'); |
