No description
  • Vue 87.3%
  • TypeScript 11%
  • Shell 0.7%
  • CSS 0.5%
  • Makefile 0.3%
  • Other 0.1%
Find a file
Christopher Rücker 8fb055e144
Some checks failed
build-and-push / build-and-push (push) Failing after 4s
ci: pass GitLab CI vars to config.sh for env and version
config.sh derives ENVIRONMENT from CI_COMMIT_TAG/CI_COMMIT_BRANCH
and writes the build version from CI_COMMIT_SHORT_SHA+BUILD_TIMESTAMP.
Map these to their Forgejo equivalents.
2026-06-19 13:47:09 +02:00
.forgejo/workflows ci: pass GitLab CI vars to config.sh for env and version 2026-06-19 13:47:09 +02:00
.serena feat: add group feature 2025-10-01 22:45:28 +02:00
CI ci: fix envs 2024-06-14 17:10:21 +02:00
src fix: update prod config 2025-10-25 13:44:12 +02:00
.dockerignore Update dockerfile 2021-12-16 18:07:04 +01:00
.env chore: update dependencies 2024-02-10 11:33:01 +01:00
.gitignore feat: add check if user is approved 2025-10-03 18:43:47 +02:00
.pre-commit-config.yaml chore(precommit): Add hooks 2024-09-18 10:07:40 +02:00
CLAUDE.md feat: rework StreamPlayer and list 2025-10-10 23:20:45 +02:00
Dockerfile chore: update image to node 20, use nginx-spa 2024-09-14 12:40:59 +02:00
favicon.ico Resolve "Add new Logo and set as favicon" 2023-04-05 08:08:57 +00:00
index.html fix: use css import for mdi 2024-09-24 11:33:32 +02:00
Makefile feat: Rework streamsettings 2025-10-06 19:01:01 +02:00
package-lock.json chore: update packages 2025-10-08 19:01:07 +02:00
package.json chore: update packages 2025-10-08 19:01:07 +02:00
README.md switch to ts, add kratos login 2022-01-27 16:54:18 +01:00
TODOLIST.md chore: todolist 2025-10-10 00:28:36 +02:00
tsconfig.json Remove all unused references 2023-04-04 15:26:17 +02:00
tsconfig.node.json Update dependencies, tsconfig 2023-03-24 13:01:29 +01:00
tsconfig.tsbuildinfo Update dependencies, tsconfig 2023-03-24 13:01:29 +01:00
vite.config.ts chore: update vuetify 2025-10-08 18:32:45 +02:00
workspace.code-workspace StreamSettings, Creating streams 2022-04-10 18:39:17 +02:00

Vue 3 + Typescript + Vite

This template should help get you started developing with Vue 3 and Typescript in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.

Type Support For .vue Imports in TS

Since TypeScript cannot handle type information for .vue imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in .vue imports (for example to get props validation when using manual h(...) calls), you can enable Volar's .vue type support plugin by running Volar: Switch TS Plugin on/off from VSCode command palette.