- New Go backend binary (backend + runner) replacing old scraper/ - Rename SCRAPER_API_URL → BACKEND_API_URL in UI env and docker-compose - Rename scraperFetch → backendFetch across all 19 UI server files - Remove SCRAPER_PROXY env var and proxy transport from browser.Config - Add Meilisearch, Valkey, Caddy to docker-compose - Add docs/: api-endpoints.md, request-flow.mermaid.md, data-flow.mermaid.md
16 lines
320 B
Svelte
16 lines
320 B
Svelte
<script lang="ts">
|
|
import type { Snippet } from 'svelte';
|
|
import { cn } from '$lib/utils';
|
|
|
|
interface Props {
|
|
class?: string;
|
|
children?: Snippet;
|
|
}
|
|
|
|
let { class: className = '', children }: Props = $props();
|
|
</script>
|
|
|
|
<div class={cn('flex flex-col space-y-1.5 p-5', className)}>
|
|
{@render children?.()}
|
|
</div>
|