Building Vue project ignores media subfolders
问题 I am using Vue 2 and I put some videos in the Vue template using HTML5 video. I save those videos in the VueProjectRootFolder/src/assets/videos/myVideo.mp4 so my markup in Vue is <video width="100%" height="40%" controls> <source src="@/assets/videos/myVideo.mp4" type="video/mp4"> </video> This works and when I do npm run build , the video works. But it is transferred in the media folder and there is no videos subfolder inside. Also, Vue changes the URL of the video to /media/myVideo.mp4 I