您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_app.tsx 235B

12345678910
  1. import { AppProps } from "next/app"
  2. import { globalStyles } from "styles"
  3. import "styles/globals.css"
  4. function MyApp({ Component, pageProps }: AppProps) {
  5. globalStyles()
  6. return <Component {...pageProps} />
  7. }
  8. export default MyApp