vue-cli3.0使用Janus的配置
Posted peiyanh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-cli3.0使用Janus的配置相关的知识,希望对你有一定的参考价值。
默认已经由后台人员搭建好了Janus后台服务,vue项目已经创建成功。
在package.json中
{ "dependencies": { "janus-gateway": "git://github.com/meetecho/janus-gateway.git" } }
如果没有vue.config.js就先创建一个
const webpack = require(‘webpack‘); module.exports = { chainWebpack: config => { config.module .rule(‘janus‘) .test(require.resolve(‘janus-gateway‘)) .use(‘exports-loader?Janus=Janus‘) .loader(‘exports-loader?Janus=Janus‘) .end() }, configureWebpack: { plugins: [ new webpack.ProvidePlugin({ adapter: ‘webrtc-adapter‘ }) ] }, }
在命令行中 cd 到项目的根目录下 重新执行 npm install 或者 yarn install
在项目中需要用到的组建中引入
import { Janus } from ‘janus-gateway‘;
以上是关于vue-cli3.0使用Janus的配置的主要内容,如果未能解决你的问题,请参考以下文章