| 123456789101112131415161718192021222324252627282930 |
- import type {Metadata} from "next";
- import {AntdRegistry} from "@ant-design/nextjs-registry";
- import "./normalize.css";
- import "./globals.css";
- import "@fortawesome/fontawesome-svg-core/styles.css";
- import {ConfigProvider} from "antd";
- import '@ant-design/v5-patch-for-react-19';
- export const metadata: Metadata = {
- title: "MorTnon RuoYi",
- description: "MorTnon 版本高级 RuoYi 前台",
- };
- export default function RootLayout({
- children,
- }: Readonly<{
- children: React.ReactNode;
- }>) {
- return (
- <html lang="en">
- <body>
- <AntdRegistry>
- <ConfigProvider theme={{ hashed: false }}>
- {children}
- </ConfigProvider>
- </AntdRegistry>
- </body>
- </html>
- );
- }
|