* Initialize service component and handler in hooks * Dynamically watch the config instead of a reload on each page * Uses derived store for public server config * Moves service data in its own page data property * Reverts to a array to store group/services
8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
import type { ServiceComponentPath, ServiceHandler } from '../service';
|
|
|
|
export const handle: ServiceHandler = () => {
|
|
return { prowlardata: 'coucou' };
|
|
};
|
|
|
|
export const path: ServiceComponentPath = 'prowlarr/ProwlarrContent.svelte';
|