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

16 行
305 B

  1. import type { NextPage } from 'next'
  2. import {GetServerSideProps} from 'next';
  3. const HomePage: NextPage = () => null
  4. export const getServerSideProps: GetServerSideProps = async () => {
  5. return {
  6. redirect: {
  7. destination: '/games',
  8. permanent: false,
  9. },
  10. };
  11. }
  12. export default HomePage