Fix stats reporting. Add Vite compatibility

This commit is contained in:
2025-11-04 16:16:50 +01:00
parent aa29de9029
commit e54dc2dbd7
21 changed files with 1060 additions and 361 deletions

View File

@@ -1,11 +1,11 @@
import type { ComponentType } from "svelte";
import type { Component } from "svelte";
import { writable } from "svelte/store";
export type Tab = {
path: string,
prefix?: string,
title: string,
component?: ComponentType,
component?: Component,
footer?: boolean,
login?: boolean,
};