working server

This commit is contained in:
2025-11-21 22:23:50 +00:00
parent c16fd804c0
commit a3a001d8e1
6 changed files with 248 additions and 119 deletions

View File

@ -1,10 +1,15 @@
import tailwindcss from '@tailwindcss/vite';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import { defineConfig, UserConfig } from 'vite';
export default defineConfig({
plugins: [tailwindcss(), sveltekit()],
ssr: {
noExternal: ['postgres']
}
});
},
server: {
origin: 'https://el.inv.fasttube.de',
host: '0.0.0.0',
port: 443
},
});