1
0
mirror of https://github.com/Yidadaa/ChatGPT-Next-Web.git synced 2025-08-27 17:51:33 +08:00
Files
ChatGPT-Next-Web/app/page.tsx
2023-04-11 02:54:31 +08:00

17 lines
332 B
TypeScript

import { Analytics } from "@vercel/analytics/react";
import { Home } from "./components/home";
import { getServerSideConfig } from "./config/server";
const serverConfig = getServerSideConfig();
export default async function App() {
return (
<>
<Home />
{serverConfig?.isVercel && <Analytics />}
</>
);
}