当前位置: 代码迷 >> 综合 >> The flash tech is undefined Skipped browser support check for that tech
  详细解决方案

The flash tech is undefined Skipped browser support check for that tech

热度:19   发布时间:2024-02-05 16:10:29.0

vue版本 2.x

VIDEOJS: ERROR: The "flash" tech is undefined. Skipped browser support check for that tech.

npm n多次也不好使 ,后来发现 是版本不一致,需要配置一下

解决方案:

webpack.base.conf.js 添加 modules: [path.resolve(‘node_modules’), ‘node_modules’]

resolve: {modules: [path.resolve('node_modules'), 'node_modules'],},

在这里插入图片描述

  相关解决方案