Skip to content

Commit f027bfe

Browse files
committed
Update dev dependencies
1 parent 14b8890 commit f027bfe

File tree

4 files changed

+2233
-2061
lines changed

4 files changed

+2233
-2061
lines changed

mdx-components.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
const components = {}
2+
3+
declare global {
4+
type MDXProvidedComponents = typeof components
5+
}
6+
7+
/**
8+
* Provide MDX component overrides.
9+
*
10+
* @returns
11+
* The MDX components.
12+
* @see https://nextjs.org/docs/app/building-your-application/configuring/mdx#add-an-mdx-componentstsx-file
13+
*/
14+
export function useMDXComponents(): MDXProvidedComponents {
15+
return components
16+
}

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.

0 commit comments

Comments
 (0)