I'm having a bit of an issue with my Vue 3 and Typescript setup. I've created a PWA where I display videos, which works perfectly online. However, when I try to access them offline, the videos don't load properly. I have stored the videos in the assets folder and in the finished distribution, they can be found in the media folder. Thank you in advance for any assistance you can provide.
<video autoplay loop class="video">
<source :src='require("@/assets/videos/test.mp4")' type='video/mp4'>
</video>