2023-06-10 14:21:40 +08:00
|
|
|
|
/*
|
|
|
|
|
* Copyright © 2016 - 2023 筱锋xiao_lfeng. All Rights Reserved.
|
|
|
|
|
* 开发开源遵循 MIT 许可,若需商用请联系开发者
|
|
|
|
|
* https://www.x-lf.com/
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
mix.js('resources/js/app.js', 'public/js')
|
2023-07-24 13:11:53 +08:00
|
|
|
|
.js('resources/js/datepicker.js', 'public/js')
|
2023-06-10 14:21:40 +08:00
|
|
|
|
.postCss('resources/css/app.css', 'public/css', [
|
2023-07-24 13:11:53 +08:00
|
|
|
|
require("tailwindcss"),
|
2023-07-20 23:34:37 +08:00
|
|
|
|
])
|
|
|
|
|
.copy('resources/images/*', 'public/images');
|