mirror of
https://github.com/umami-software/umami.git
synced 2026-02-08 22:57:12 +01:00
20 lines
420 B
TypeScript
20 lines
420 B
TypeScript
import { Metadata } from 'next';
|
|
import ConsolePage from '../ConsolePage';
|
|
|
|
async function getEnabled() {
|
|
return !!process.env.ENABLE_TEST_CONSOLE;
|
|
}
|
|
|
|
export default async function ({ params: { websiteId } }) {
|
|
const enabled = await getEnabled();
|
|
|
|
if (!enabled) {
|
|
return null;
|
|
}
|
|
|
|
return <ConsolePage websiteId={websiteId?.[0]} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Test Console | Umami',
|
|
};
|