File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ PORT=$(hash_port "$BRANCH")
2121export KILN_PORT=" $PORT "
2222export KILN_FRONTEND_PORT=" $(( PORT + 1 )) "
2323export VITE_API_PORT=" $PORT "
24+ export VITE_BRANCH_NAME=" $BRANCH "
2425
2526export KILN_WEB_URL=" http://localhost:$KILN_FRONTEND_PORT "
2627
Original file line number Diff line number Diff line change 2323 import { beforeNavigate , afterNavigate } from " $app/navigation"
2424 import { client } from " $lib/api_client"
2525
26+ const pageTitle = import .meta .env .VITE_BRANCH_NAME || " Kiln"
27+
2628 function sanitize_route_id(route_id : string | null | undefined ) {
2729 if (! route_id ) {
2830 return " /unknown"
121123 </script >
122124
123125<svelte:head >
124- <title >Kiln </title >
126+ <title >{ pageTitle } </title >
125127 <meta name =" description" content =" The easiest way to built AI products" />
126128
127129 <link
You can’t perform that action at this time.
0 commit comments