mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
import WebsiteSettings from '../WebsiteSettings';
|
|
|
|
export default async function WebsiteSettingsPage({ params: { websiteId } }) {
|
|
if (process.env.cloudMode || !websiteId) {
|
|
return null;
|
|
}
|
|
|
|
return <WebsiteSettings websiteId={websiteId} />;
|
|
}
|