web: Clean up docs, types.

This commit is contained in:
Teffen Ellis
2025-05-19 19:41:59 +02:00
parent b8e394227e
commit c50793133b
9 changed files with 42 additions and 28 deletions

View File

@ -21,7 +21,7 @@ const log = console.debug.bind(console, logPrefix);
* ESBuild may tree-shake it out of production builds.
*
* ```ts
* if (import.meta.env.NODE_ENV=== "development") {
* if (process.env.NODE_ENV=== "development") {
* await import("@goauthentik/esbuild-plugin-live-reload/client")
* .catch(() => console.warn("Failed to import watcher"))
* }