/
githubmirror
/
screenshot-to-code
Обзор
Документация
Войти
/
githubmirror
/
screenshot-to-code
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
frontend/src/lib/stacks.ts
21 строка
812 B
Abi Raja
Fix gemini variant invalid argument
06 фев 2026, 18:42
06 фев 2026, 18:42
845c23e
Код
Авторство
О чём код?
// Keep in sync with backend (prompts/types.py) // Order here determines order in dropdown export enum Stack { HTML_TAILWIND = "html_tailwind", HTML_CSS = "html_css", REACT_TAILWIND = "react_tailwind", BOOTSTRAP = "bootstrap", VUE_TAILWIND = "vue_tailwind", IONIC_TAILWIND = "ionic_tailwind", } export const STACK_DESCRIPTIONS: { [key in Stack]: { components: string[]; inBeta: boolean }; } = { html_css: { components: ["HTML", "CSS"], inBeta: false }, html_tailwind: { components: ["HTML", "Tailwind"], inBeta: false }, react_tailwind: { components: ["React", "Tailwind"], inBeta: false }, bootstrap: { components: ["Bootstrap"], inBeta: false }, vue_tailwind: { components: ["Vue", "Tailwind"], inBeta: true }, ionic_tailwind: { components: ["Ionic", "Tailwind"], inBeta: true }, };