mirror of
https://github.com/umami-software/umami.git
synced 2026-02-20 12:35:38 +01:00
Added custom branding env-vars
This commit is contained in:
parent
ab4a60f814
commit
29fa4fe3bd
3 changed files with 10 additions and 3 deletions
|
|
@ -10,7 +10,10 @@ export default function Layout({ title, children, header = true, footer = true }
|
|||
return (
|
||||
<>
|
||||
<Head>
|
||||
<title>umami{title && ` - ${title}`}</title>
|
||||
<title>
|
||||
{process.env.NEXT_PUBLIC_CUSTOM_TITLE || 'umami'}
|
||||
{title && ` - ${title}`}
|
||||
</title>
|
||||
</Head>
|
||||
|
||||
{header && <Header />}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue