Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Flex's avatar
Level 4

failed to load resource in vue js and Laravel project

working with Vue js and Laravel project. using ivuew js library also. how ever when upload a picture here there should be trash icon in the middle of image.

<div class="demo-upload-list-cover">
        <Icon type="ios-trash-outline" @click="deleteImage"></Icon> // trash icon here
</div>

but after upload image to the system not visible trash icon and console generate following error messages

Failed to load resource: the server responded with a status of 404 (Not Found)
HKGrotesk-Bold.woff2:1  
      

Failed to load resource: the server responded with a status of 404 (Not Found)
HKGrotesk-Regular.woff2:1


Failed to load resource: the server responded with a status of 404 (Not Found)
HKGrotesk-Medium.woff:1
       

Failed to load resource: the server responded with a status of 404 (Not Found)
HKGrotesk-Bold.woff:1

       
Failed to load resource: the server responded with a status of 404 (Not Found)
HKGrotesk-Regular.woff:1
       

Failed to load resource: the server responded with a status of 404 (Not Found)


DevTools failed to load source map: Could not load content for http://localhost:8000/js/iview.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE


DevTools failed to load source map: Could not load content for http://localhost:8000/css/bootstrap.min.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
0 likes
1 reply
vybeauregard's avatar

Take a look in your project's public folder and see if you've published the necessary assets there. You should see a css and js folder in there at minimum. If not, you may need to make some adjustments to your task runner.

Please or to participate in this conversation.