inital commit

This commit is contained in:
2026-06-24 18:29:01 +06:00
commit f401802bf7
3918 changed files with 553085 additions and 0 deletions

27
webpack.mix.js vendored Normal file
View File

@@ -0,0 +1,27 @@
const mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel applications. By default, we are compiling the CSS
| file for the application as well as bundling up all the JS files.
|
*/
const path = require('path');
mix.webpackConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, 'resources/js')
},
},
});
mix.disableNotifications();
mix.js('resources/js/app.js', 'public/js/vue')
.vue();