1. 本地视频流能获取到了 2. 找到了视频连接错误的原因:挂断后本地麦克风和视频并没有关闭 现有问题: 1. 需要在挂断后关闭麦克风和摄像头 2. 没有渲染远程流推送的视频
33 lines
811 B
JavaScript
33 lines
811 B
JavaScript
import {defineConfig} from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import tailwindcss from "@tailwindcss/vite"
|
|
import path from 'path'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
tailwindcss()
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src')
|
|
}
|
|
},
|
|
server: {
|
|
port: 18888,
|
|
proxy: {
|
|
'/api': {
|
|
// target: 'http://127.0.0.1:18007/api/',
|
|
target: 'http://127.0.0.1:12080',
|
|
// target: 'https://g-ws.nailaoyun.cn',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/api/, '')
|
|
}
|
|
}
|
|
},
|
|
content: [
|
|
'./node_modules/@fortawesome/fontawesome-free/**/*.js'
|
|
],
|
|
})
|