mirror of
https://github.com/umami-software/umami.git
synced 2026-02-16 10:35:35 +01:00
Fixed build.
This commit is contained in:
parent
257050f749
commit
1d7759408f
11 changed files with 24 additions and 61 deletions
|
|
@ -1,8 +1,13 @@
|
|||
import { Suspense } from 'react';
|
||||
import { Metadata } from 'next';
|
||||
import { App } from './App';
|
||||
|
||||
export default function ({ children }) {
|
||||
return <App>{children}</App>;
|
||||
return (
|
||||
<Suspense>
|
||||
<App>{children}</App>
|
||||
</Suspense>
|
||||
);
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue