Initial commit

This commit is contained in:
azgrey
2026-06-05 15:09:45 +07:00
commit bda6ce731a
25 changed files with 5313 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
proxy: {
'/api.php': {
target: 'http://127.0.0.1/sipkem',
changeOrigin: true,
}
}
}
})