XF_Index/webpack.mix.js
XiaoLFeng 04098ad452 AddFeature: 新增管理员页面添加用户
管理员可直接添加友链操作,修复了一些简单的逻辑错误

新增:
- add.blade.php
- favicon.png
修改:
- head.blade.php
- Index.php
- Console/Link.php
- Function/Link.php
- webpack.mix.js

Signed-off-by: XiaoLFeng <gm@x-lf.cn>
2023-07-20 23:34:37 +08:00

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