I am currently switching to Laravel Valet as a simple webserver and am serving my current project under project.test
. Everything - including PHP, JS and CSS - is serving file except my assets/css/style.css
file.
When I open it in the browser I get an empty result and a 200 response code. When I rename the file to assets/css/main.css
it is serving fine - only with the file name style.css
. I also tried clearing my browser cache, using another browser, ensuring Valet has enough permissions to read the file (the file has the same permissions as the other files that are served successfully) and completely restarting Laravel Valet but it won't serve the file.
Do you have any idea why it won't serve my assets/css/style.css
file?