feat: add iframe widget (#291)

* feat: add nestjs replacement, remove nestjs

* feat: add iframe widget

* fix: format issue

* fix: format issue

* fix: format issue

* fix: lockfile frozen
This commit is contained in:
Meier Lukas
2024-04-13 11:58:41 +02:00
committed by GitHub
parent 82e9887f36
commit 8f4897186c
8 changed files with 142 additions and 5 deletions

View File

@@ -1,2 +1,8 @@
export const widgetKinds = ["clock", "weather", "app", "video"] as const;
export const widgetKinds = [
"clock",
"weather",
"app",
"iframe",
"video",
] as const;
export type WidgetKind = (typeof widgetKinds)[number];