@gych That didn't help either unfortunately :( the following url came back: laravel.local/images/flag-circular/pl.svg - Failed to load resource: the server responded with a status of 404 (), although it should be: laravel.local/public/build/assets/pl-Basx8Xrl.svg
@3v4l This will only work when you move the images in a folder named images in your laravel application's public folder not when they are only in your build/assets folder
@3v4l When you really want to version your images you could use this approach but it won't work with Vite::asset() that only works in blade files, not in vue files.
With vue you have to use a different approach.
You could try this if you prefer to version your images and load them from your build or just keep using them in the public/images folder.