XF_Index/webpack.mix.js
XiaoLFeng 9489402bfd AddFeature: 添加日期选择器
添加日期时间选择器

修改:
- app.css
- webpack.mix.js
- package.json
- package-lock.json
新增:
- datepicker.js

Signed-off-by: XiaoLFeng <gm@x-lf.cn>
2023-07-24 13:11:53 +08:00

26 lines
846 B
JavaScript

/*
* 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')
.js('resources/js/datepicker.js', 'public/js')
.postCss('resources/css/app.css', 'public/css', [
require("tailwindcss"),
])
.copy('resources/images/*', 'public/images');