chore(website): this may solve dynamic route problems

https://github.com/vercel/next.js/pull/47982
This commit is contained in:
iCrawl
2023-04-07 20:54:16 +02:00
parent f195556b64
commit 687bbd889f
3 changed files with 136 additions and 3 deletions

View File

@@ -60,7 +60,7 @@
"bright": "^0.7.1",
"cmdk": "^0.2.0",
"meilisearch": "^0.32.2",
"next": "^13.2.5-canary.34",
"next": "^13.3.1-canary.2",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.2.1",
"react": "^18.2.0",

View File

@@ -1,10 +1,13 @@
import { FiExternalLink } from '@react-icons/all-files/fi/FiExternalLink';
import Image from 'next/image';
import Link from 'next/link';
import type { ServerRuntime } from 'next/types';
import vercelLogo from '~/assets/powered-by-vercel.svg';
import { SyntaxHighlighter } from '~/components/SyntaxHighlighter';
import { DESCRIPTION, CODE_EXAMPLE } from '~/util/constants';
export const runtime: ServerRuntime = 'edge';
export default function Page() {
return (
<div className="mx-auto flex min-h-screen max-w-6xl flex-col place-items-center gap-12 px-8 py-16 lg:place-content-center lg:px-8 lg:py-0">