Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel 8 - GET http://localhost:8000/css/app.css net::ERR_ABORTED 404 (Not Found)

Tags:

laravel

I can't use the app.css in my application. Every time the server returns following error

GET http://localhost:8000/css/app.css net::ERR_ABORTED 404 (Not Found).

I use a blade page.

<link href="{{ asset('css/app.css') }}" rel="stylesheet">

I tried to use php artisan serve and php -S localhost:8000 -t public and the booth didn't work.

like image 661
Paulo Fonseca Avatar asked Oct 27 '25 04:10

Paulo Fonseca


1 Answers

try this before running your project on server make sure to compile laravel-mix

npm install

and then run

npm run dev

your facing the error because app.css not compiled yet

like image 110
tameemahmad shahzad Avatar answered Oct 29 '25 19:10

tameemahmad shahzad