VUE整合VIDEOJS时报错The flash tech is undefined
报错详情:VIDEOJS: ERROR: The "flash" tech is undefined. Skipped browser support check for that tech. 如下图:
·
报错详情:VIDEOJS: ERROR: The "flash" tech is undefined. Skipped browser support check for that tech. 如下图:
原因:videojs和videojs-flash各有一个video.js,如果两个版本不一样可能就会出现上述报错。
解决方案:配置第三方模块的查找顺序,优先查找本身安装的videojs。具体操作方法如下:
在webpack.config.js中添加 modules: [path.resolve('node_modules'), 'node_modules'],如下
resolve: {
modules: [path.resolve('node_modules'), 'node_modules'],
// ...
}
更多推荐
已为社区贡献1条内容
所有评论(0)