forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.json.mjs
More file actions
22 lines (16 loc) · 807 Bytes
/
next.json.mjs
File metadata and controls
22 lines (16 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'use strict';
import _authors from './authors.json' with { type: 'json' };
import _siteNavigation from './navigation.json' with { type: 'json' };
import _blogData from './public/blog-data.json' with { type: 'json' };
import _siteRedirects from './redirects.json' with { type: 'json' };
import _siteConfig from './site.json' with { type: 'json' };
/** @type {Record<string, import('./types').Author>} */
export const authors = _authors;
/** @type {import('./types').SiteNavigation} */
export const siteNavigation = _siteNavigation;
/** @type {Record<string, Array<import('./types').Redirect>>} */
export const siteRedirects = _siteRedirects;
/** @type {import('./types').SiteConfig} */
export const siteConfig = _siteConfig;
/** @type {import('./types').BlogData} */
export const blogData = _blogData;