Initial Commit

This commit is contained in:
openhands
2025-10-05 19:30:16 +00:00
commit 0eec6fa2e4
20 changed files with 4922 additions and 0 deletions

11
vite.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()],
server: {
host: '0.0.0.0',
port: 12000,
allowedHosts: true
}
});