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
18 lines (12 loc) · 716 Bytes
/
next.json.mjs
File metadata and controls
18 lines (12 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'use strict';
// This is the static Site Configuration
import siteConfig from './site.json' assert { type: 'json' };
// This is the static Site Navigation (legacy website)
import siteNavigation from './navigation.json' assert { type: 'json' };
// This is the static Site External and Internal Redirects Metadata
import siteRedirects from './redirects.json' assert { type: 'json' };
// This is the Website i18n Configuration
import localeConfig from './i18n/config.json' assert { type: 'json' };
// This is the generated blog data for the Node.js Website
import blogData from './public/blog-posts-data.json' assert { type: 'json' };
export { siteConfig, siteNavigation, siteRedirects, localeConfig, blogData };