mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-23 20:26:15 +00:00
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com> Co-authored-by: 谨欣 <echo.cmy@antgroup.com> Co-authored-by: 严志勇 <yanzhiyong@tiansuixiansheng.com> Co-authored-by: yanzhiyong <932374019@qq.com>
55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
import { createCache, StyleProvider } from '@ant-design/cssinjs';
|
|
import Document, { DocumentContext, Head, Html, Main, NextScript } from 'next/document';
|
|
import { doExtraStyle } from '../genAntdCss';
|
|
|
|
class MyDocument extends Document {
|
|
static async getInitialProps(ctx: DocumentContext) {
|
|
const cache = createCache();
|
|
let fileName = '';
|
|
const originalRenderPage = ctx.renderPage;
|
|
ctx.renderPage = () =>
|
|
originalRenderPage({
|
|
enhanceApp: App => props => (
|
|
<StyleProvider cache={cache} hashPriority='high'>
|
|
<App {...props} />
|
|
</StyleProvider>
|
|
),
|
|
});
|
|
const initialProps = await Document.getInitialProps(ctx);
|
|
|
|
fileName = doExtraStyle({
|
|
cache,
|
|
});
|
|
|
|
return {
|
|
...initialProps,
|
|
styles: (
|
|
<>
|
|
{initialProps.styles}
|
|
{/* 1.2 inject css */}
|
|
{fileName && <link rel='stylesheet' href={`/${fileName}`} />}
|
|
</>
|
|
),
|
|
};
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Html lang='en'>
|
|
<Head>
|
|
<link rel='icon' href='/favicon.ico' />
|
|
<meta name='description' content='Revolutionizing Database Interactions with Private LLM Technology' />
|
|
<meta property='og:description' content='eosphoros-ai' />
|
|
<meta property='og:title' content='DB-GPT' />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default MyDocument;
|