feat: implement single-port UART

This commit is contained in:
roy01
2026-06-04 11:38:38 +08:00
parent 5413062eff
commit b99af5f734
9 changed files with 2503 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { defineConfig } from 'vite';
export default defineConfig({
server: {
port: 3000,
open: false, // Don't auto open browser in command-line environments to avoid errors
},
base: './',
});