-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathrocket-config.js
More file actions
25 lines (24 loc) · 696 Bytes
/
rocket-config.js
File metadata and controls
25 lines (24 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { netlify } from '@rocket/js/adapters/netlify.js';
/** @type {import("@rocket/js/types.js").RocketConfig} */
export default {
includeGlobs: ['docs/**/*.rocket.{md,js}'],
adapter: netlify(),
siteOrigin: 'https://rocket.modern-web.dev',
siteHeadMetadata: {
siteName: 'Rocket',
defaultDescription:
'Rocket is a static-site framework for configured Pages, built for deployable websites that start with HTML and add JavaScript only where needed.',
language: 'en',
icons: {
svg: '/favicon.svg',
},
themeColor: '#d01a1c',
socialPreview: {
delivery: 'static',
},
},
siteDiscoverability: {
sitemap: true,
robots: true,
},
};