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

492 阅读1分钟

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'],

},

在这里插入图片描述