feat: base frontend

feat: base openapi v2 to openapi v3 generation
This commit is contained in:
2025-08-07 16:23:22 +01:00
parent 56e78231de
commit 859e075407
28 changed files with 6349 additions and 9 deletions

22
web/svelte.config.js Normal file
View File

@@ -0,0 +1,22 @@
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://svelte.dev/docs/kit/integrations
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: {
// Use static adapter for Docker deployment
adapter: adapter({
pages: 'build',
assets: 'build',
fallback: 'index.html',
precompress: false,
strict: false
})
}
};
export default config;