mirror of
https://github.com/documenso/documenso.git
synced 2025-11-27 06:54:01 +10:00
* chore: upgrade next.js * fix: canvas not found error * chore: upgrade package for marketing * feat: add isServer conditional * fix: inverse isServer condition * fix: normalize packages * fix: upgrade ee package * fix: depdency nightmares * fix: failing seed script
11 lines
342 B
TypeScript
11 lines
342 B
TypeScript
import { SinglePlayerClient } from './client';
|
|
|
|
export const revalidate = 0;
|
|
|
|
// !: This entire file is a hack to get around failed prerendering of
|
|
// !: the Single Player Mode page. This regression was introduced during
|
|
// !: the upgrade of Next.js to v13.5.x.
|
|
export default function SingleplayerPage() {
|
|
return <SinglePlayerClient />;
|
|
}
|