On the Laravel 8 project I've done the next commands:
composer require laravel/ui
php artisan ui bootstrap
npm install && npm run dev
And now I'm trying to add the new button with bootstrap classes to the dashboard page, generated by laravel/jetstream, but bootstrap styles were not applied. I've read, this package uses Tailwind UI, but I want to leave its style and to code whole project in Bootstrap.
Can you help me with how to say to Laravel mix to use Bootstrap files?
Thank you.