I'm having a issue with built-in assets: I want to insert an image in my component using <img src="./file.png">, however, Meteor's Vue server is not following Vue's Transform Fules, and the browser gets literal "./file.png" instead of a dynamically-generated URL like regular vue serve does, so it doesn't work.
Hi there.
I'm having a issue with built-in assets: I want to insert an image in my component using
<img src="./file.png">
, however, Meteor's Vue server is not following Vue's Transform Fules, and the browser gets literal "./file.png" instead of a dynamically-generated URL like regularvue serve
does, so it doesn't work.