// pages/sitemap.xml.js import { getGlobalData } from '@/lib/db/getSiteData' import { useRouter } from 'next/router' import Slug from '../[prefix]' /** /** * 服务端接收参数处理 * @param {*} ctx * @returns */ export const getServerSideProps = async ctx => { const from = `auth` const props = await getGlobalData({ from }) delete props.allPages return { props } } /** * 根据notion的slug访问页面 * 解析二级目录 /article/about * @param {*} props * @returns */ const UI = props => { const router = useRouter() return } export default UI