first commit

This commit is contained in:
benjibennn
2023-12-22 12:35:55 +08:00
commit 9f89a732d6
872 changed files with 156291 additions and 0 deletions

22
wave/docs/webpack.mix.js Normal file
View File

@@ -0,0 +1,22 @@
let mix = require('laravel-mix');
const glob = require('glob-all');
require('laravel-mix-tailwind');
require('laravel-mix-purgecss');
/*
|--------------------------------------------------------------------------
| 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.setPublicPath('./assets/')
.sass('assets/app.scss', 'css')
.js('assets/app.js', 'js')
.tailwind('./tailwind.config.js');