vue2中使用require引入.mp4文件,文件目录下有.pdf文件会报错。
但是我删掉pdf文件他就不报错了,但是项目别的地方需要...
引用:
//src= a408ec3064344b4bb7b0318572386d87.mp4
require("@/assets/" + src)
报错:
ERROR in ./src/assets/0c370944e41f4eb1a0f3f8348c18665f.pdf 1:0
Module parse failed: Unexpected token (1:0)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
(Source code omitted for this binary file)
不知道你为何要使用
require
来引入.mp4
资源。这类的静态资源最好是存放在/public
目录下。然后直接用绝对路径的形式去引用、加载就行了。