mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 04:23:31 +01:00
refactor: switch to next.js
This commit is contained in:
8
packages/website/src/pages/_app.tsx
Normal file
8
packages/website/src/pages/_app.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import type { AppProps } from 'next/app';
|
||||
import '@unocss/reset/normalize.css';
|
||||
import 'uno.css';
|
||||
import '../styles/main.css';
|
||||
|
||||
export default function MyApp({ Component, pageProps }: AppProps) {
|
||||
return <Component {...pageProps} />;
|
||||
}
|
||||
Reference in New Issue
Block a user