Web UI setup

This commit is contained in:
nemunaire 2025-10-17 17:18:37 +07:00
commit 4cd184779e
19 changed files with 6026 additions and 2 deletions

12
web/openapi-ts.config.ts Normal file
View file

@ -0,0 +1,12 @@
import { defineConfig } from "@hey-api/openapi-ts";
export default defineConfig({
input: "../api/openapi.yaml",
output: "src/lib/api",
plugins: [
{
name: "@hey-api/client-fetch",
runtimeConfigPath: "./src/lib/hey-api.ts",
},
],
});