Skip to content

Commit b53607e

Browse files
authored
Revert "feat(meta): support nodejs v22" (#6810)
1 parent c228275 commit b53607e

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

next.json.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
'use strict';
22

3-
import _authors from './authors.json' with { type: 'json' };
4-
import _siteNavigation from './navigation.json' with { type: 'json' };
5-
import _siteRedirects from './redirects.json' with { type: 'json' };
6-
import _siteConfig from './site.json' with { type: 'json' };
3+
import _authors from './authors.json' assert { type: 'json' };
4+
import _siteNavigation from './navigation.json' assert { type: 'json' };
5+
import _siteRedirects from './redirects.json' assert { type: 'json' };
6+
import _siteConfig from './site.json' assert { type: 'json' };
77

88
/** @type {Record<string, import('./types').Author>} */
99
export const authors = _authors;

next.locales.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

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

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

0 commit comments

Comments
 (0)