Add companion app

This commit is contained in:
nmemmert
2026-04-20 14:58:57 -04:00
parent 0c328057c8
commit 74c21f956e
18 changed files with 2977 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 5181,
proxy: {
'/api': {
target: 'http://localhost:4174',
changeOrigin: true
}
}
}
});