I'm working on the vuejs app and on developer mode my app running fine as expected. But when I creating the build and serve its build on local/server its not showing the images which is inside the folder of /public/images/image_1.jpg
Here is the code where I'm referencing the images in the component.
 computed: {
        locomotion_image() {
            return `/images/Locomotion_${this.image}.jpg`;
        }
    }
in the template consume this computed property
 <img v-if="size === 'lg'" :src="locomotion_image" :alt="[$t('locomotion cow ') + image]" class="hygiene-score-images__img mb-3">
warning I'm getting when build is complete
entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
Entrypoints:
  main (5.46 MiB)
      js/chunk-vendors.e5ec3734.js
      css/main.881ab0a7.css
      js/main.f96f8547.js
as you can seen here images are showing here. here the after build screenshot, as you can seen the path is the same but images are loading properly