When I'm running my Vue.js app locally, the images are loading fine from the "src/assets" folder. However, when I deploy the app to Firebase, the images are not displaying and I get a 404 error. What could be causing this issue?
I have tried using:
<img src="../assets/logo.png" style="width:100%" alt="Avatar">
And also:
<img :src="../assets/logo.png" style="width:100%" alt="Avatar">