What is ACME DNS-01 & Wildcard Certificates?
Let’s Encrypt issuance via DNS challenges, producing wildcard certificates that cover every subdomain. DNS-01 is what makes `*.byob.page` and custom domains automatic instead of manual.
Related terms
Traefik Reverse Proxy
The edge router in front of BYOB services: web/websecure entrypoints, Docker and file providers, automatic HTTPS redirects. One proxy terminates TLS and routes every workspace, preview, and API.
Custom-Domain DNS Setup
Pointing your own address at a BYOB deployment: exact CNAME/TXT records, propagation waits, and status checks. The guided wizard emits the records; DNS does the rest within hours.
HTTPS Redirect & Security Defaults
Port-80-to-443 redirection with HSTS/CSP inherited from the edge. Generated apps get transport security by platform default, not per-project configuration.
Svelte Runes
The `$state`, `$derived`, `$effect`, and `$props` primitives powering Svelte 5 reactivity. Runes are mandatory in generated code: explicit, compilable, and consistent across every component.
File-Based Routing
Pages defined by file location: `+page.svelte` renders, `+layout.svelte` wraps, `+server.js` serves data. The route tree is the app map — no separate router config to drift.
Load Function
Server-side data loading for a route before it renders. Load on the server for content crawlers and users need immediately; reach for client fetching only for interactive extras.