Cách copy thư mục từ resources/font sang thư mục public/font (ok)
C:\xampp\htdocs\api\webpack.mix.js
const mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| 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.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css')
.sourceMaps();
mix.copyDirectory('resources/fonts', 'public/fonts');
Kết quả sau khi chạy mix:
$yarn dev

PreviousCách sử dụng font local, folder trong thư mục public, image, .htaccess (ok)Next[ARTISAN] php artisan make:controller ProductController --resource --model=Product (ok)
Last updated
Was this helpful?