Essentially what I would like to achieve, is that the stylesheets and scripts receive the correct path. I want to use Hot Reload (npm run hot) for this project so I don't have to use "npm run dev" after every change being made. With that said, the URL helper function actually works to retrieve the path, but that doesn't make me able to hot reload ofcourse.
What I have tried:
Using a nested helper function, for example:
<link href=" {{ url(mix('css/app.css')) }}" rel="stylesheet">
returns: "GET https://localhost:8080/css/app.css net::ERR_BLOCKED_BY_CLIENT"
<link href=" {{ mix(url('css/app.css')) }}" rel="stylesheet">
returns: "GET https://localhost:8080/http://ugly-turkey-88.loca.lt/css/app.css net::ERR_BLOCKED_BY_CLIENT"