feat: initial version
publish-content / build (push) Canceled after 0s

This commit is contained in:
2026-09-05 20:39:54 +05:00
parent 960e098ff7
commit b1b4d29803
24 changed files with 4321 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'vite';
import { svelte } from '@sveltejs/vite-plugin-svelte';
import basicSsl from '@vitejs/plugin-basic-ssl';
// Dev-сервер: обслуживает и /viewer.html, и /config.html на одном origin
// (Twitch требует один Base URI). HTTPS — обязательное требование Twitch.
export default defineConfig({
plugins: [svelte(), basicSsl()],
server: { port: 8080 },
});