Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "feat(meta): support nodejs v22" #6810

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions next.json.mjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
'use strict';

import _authors from './authors.json' with { type: 'json' };
import _siteNavigation from './navigation.json' with { type: 'json' };
import _siteRedirects from './redirects.json' with { type: 'json' };
import _siteConfig from './site.json' with { type: 'json' };
import _authors from './authors.json' assert { type: 'json' };
import _siteNavigation from './navigation.json' assert { type: 'json' };
import _siteRedirects from './redirects.json' assert { type: 'json' };
import _siteConfig from './site.json' assert { type: 'json' };

/** @type {Record<string, import('./types').Author>} */
export const authors = _authors;
Expand Down
2 changes: 1 addition & 1 deletion next.locales.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

import localeConfig from './i18n/config.json' with { type: 'json' };
import localeConfig from './i18n/config.json' assert { type: 'json' };

// As set of available and enabled locales for the website
// This is used for allowing us to redirect the user to any
Expand Down
Loading