Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several updates to the website's configuration, package dependencies, and documentation files. The most important changes involve converting configuration files to ES modules, updating package versions, and migrating metadata files from JSON to JavaScript.
Configuration Updates:
website/next.config.js
towebsite/next.config.mjs
and converted it to use ES module syntax. [1] [2]Dependency Updates:
next
,nextra
, andnextra-theme-docs
to the latest versions inwebsite/package.json
.next-sitemap
to the latest version inwebsite/package.json
.Metadata Migration:
website/pages/_meta.js
,website/pages/docs/_meta.js
, andwebsite/pages/docs/json/_meta.js
. [1] [2] [3]website/pages/_meta.json
,website/pages/docs/_meta.json
,website/pages/docs/json/_meta.json
). [1] [2] [3]Documentation Updates:
website/pages/docs/json/parse.mdx
andwebsite/pages/docs/json/schema.mdx
to reflect changes in thenextra
library. [1] [2]These changes ensure compatibility with the latest versions of dependencies, improve the maintainability of metadata, and keep the documentation up-to-date with the current library usage.