mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 20:15:41 +01:00
14 lines
247 B
TypeScript
14 lines
247 B
TypeScript
import { Metadata } from 'next';
|
|
import LoginPage from './LoginPage';
|
|
|
|
export default async function () {
|
|
if (process.env.DISABLE_LOGIN) {
|
|
return null;
|
|
}
|
|
|
|
return <LoginPage />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Login',
|
|
};
|