We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e355b4d commit b16f550Copy full SHA for b16f550
site/context/wush.tsx
@@ -8,12 +8,12 @@ const iceServers = [
8
{
9
urls: "stun:stun.l.google.com:19302",
10
},
11
- ...(process.env.NEXT_PUBLIC_TURN_SERVER_URL
+ ...(process.env.PUBLIC_TURN_SERVER_URL
12
? [
13
14
- urls: process.env.NEXT_PUBLIC_TURN_SERVER_URL,
15
- username: process.env.NEXT_PUBLIC_TURN_USERNAME ?? "",
16
- credential: process.env.NEXT_PUBLIC_TURN_CREDENTIAL ?? "",
+ urls: process.env.PUBLIC_TURN_SERVER_URL,
+ username: process.env.PUBLIC_TURN_USERNAME ?? "",
+ credential: process.env.PUBLIC_TURN_CREDENTIAL ?? "",
17
18
]
19
: []),
0 commit comments