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

13 行
269 B

  1. export async function getServerSideProps(context) {
  2. var { query } = context;
  3. return {
  4. redirect: {
  5. destination: '/home/',
  6. permanent: false,
  7. },
  8. }
  9. }
  10. export default function Redirecting(){
  11. return 'redirecting....';
  12. }