Have you checked this thread
https://laracasts.com/discuss/channels/vite/fontawesome-and-vite
to install fontawesome in local dev box of Laravel 10.20
npm install --save @fortawesome/fontawesome-free
can find C:\laragon\www\project-name\node_modules@fortawesome\fontawesome-free\css\all.css, so in the app.css
@import '~@fortawesome/fontawesome-free/css/all.css';
then run
npm run dev
in the home.blade.php, insert the following line to test fontawesome icon camera
<i class="fas fa-camera"></i>
but it does not show up camera icon, go to inspect and found
Failed to load resource: the server responded with a status of 404 (Not Found) all.css
not sure where is going wrong, checked here forum regarding Font awesome not helpful in my case!
Please or to participate in this conversation.