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
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from 'vite';
import { svelte } from '@sveltejs/vite-plugin-svelte';
import { viteSingleFile } from 'vite-plugin-singlefile';
// Конфиг-вью (панель управления в Creator Dashboard): отдельный самодостаточный HTML.
export default defineConfig({
plugins: [svelte(), viteSingleFile()],
build: {
outDir: 'dist/config',
emptyOutDir: true,
rollupOptions: { input: 'config.html' },
},
});