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 c51bdc5 commit 7408195Copy full SHA for 7408195
ui/vite.config.ts
@@ -17,11 +17,7 @@ export default defineConfig(({ mode, command }) => {
17
const { JETKVM_PROXY_URL, USE_SSL } = process.env;
18
const useSSL = USE_SSL === "true";
19
20
- const plugins = [
21
- tailwindcss(),
22
- tsconfigPaths(),
23
- react()
24
- ];
+ const plugins = [tailwindcss(), tsconfigPaths(), react()];
25
if (useSSL) {
26
plugins.push(basicSsl());
27
}
@@ -41,6 +37,8 @@ export default defineConfig(({ mode, command }) => {
41
37
"/storage": JETKVM_PROXY_URL,
42
38
"/cloud": JETKVM_PROXY_URL,
43
39
"/developer": JETKVM_PROXY_URL,
40
+ "/microphone": JETKVM_PROXY_URL,
+ "/audio": JETKVM_PROXY_URL,
44
45
: undefined,
46
},
0 commit comments