I use the vue cli with webpack and I'm absolutely fine with it. But now I have a little problem!
I want that the path in the data attributes from the <object> tags are also compiled like the src attributes from the <img> tags
for example:
If I do something like this
<img src="../path/to/file.svg" alt="">
webpack compiled the path to
<img src="/dist/path/to/file.svg" alt="">
but when I do something like this:
<object type="image/svg+xml" data="../path/to/file.svg">fallback</object>
it doesn't work :(
dataattribute as well. If I try the example from here I only get a blank page