Skip to content

Commit

Permalink
Revert "feat(meta): support nodejs v22" (#6810)
Browse files Browse the repository at this point in the history
  • Loading branch information
ovflowd committed Jun 4, 2024
1 parent c228275 commit b53607e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit b53607e

Please sign in to comment.