Skip to content

Commit

Permalink
Merge branch 'canary' into 10-24-Remove_throw_for_unknown_messages_in…
Browse files Browse the repository at this point in the history
…_hot-reloader-client
  • Loading branch information
kodiakhq[bot] authored Nov 3, 2023
2 parents 7acbaf0 + 53b684a commit c0319c4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: MDX
title: Markdown and MDX
nav_title: MDX
description: Learn how to configure MDX to write JSX in your markdown files.
---

Expand Down Expand Up @@ -70,7 +71,7 @@ const withMDX = require('@next/mdx')()

/** @type {import('next').NextConfig} */
const nextConfig = {
// Configure `pageExtensions`` to include MDX files
// Configure `pageExtensions` to include MDX files
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'],
// Optionally, add any other Next.js config below
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: MDX
title: Markdown and MDX
nav_title: MDX
description: Learn how to configure MDX to write JSX in your markdown files.
source: app/building-your-application/configuring/mdx
---
Expand Down
2 changes: 1 addition & 1 deletion packages/next/src/build/babel/loader/get-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function checkCustomBabelConfigDeprecation(

if (isPresetReadyToDeprecate && unsupportedPlugins.length === 0) {
Log.warn(
`It looks like there is a custom Babel configuration can be removed ${
`It looks like there is a custom Babel configuration that can be removed${
pluginReasons.length > 0 ? ':' : '.'
}`
)
Expand Down

0 comments on commit c0319c4

Please sign in to comment.