-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrontity.settings.js
48 lines (47 loc) · 1.06 KB
/
frontity.settings.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
const settings = {
name: "Componentity - From CodeNawis",
state: {
frontity: {
url: "https://componentity.com",
title: "Componentity",
description: "Thousands of Components Ready to be Copy-Pasted",
},
},
packages: [
{
name: "@frontity/codenawis",
state: {
theme: {
menu: [
["Home", "/"],
["Support Us", "/support"],
["Blog", "/category/blog"],
["Components", "https://componentity.com/#getStarted"],
],
featured: {
showOnList: true,
showOnPost: true,
},
},
},
},
{
name: "@frontity/wp-source",
state: {
source: {
api:
"https://public-api.wordpress.com/wp/v2/sites/comoponentity.wordpress.com/",
params: {
per_page: 20,
},
},
},
},
"@frontity/tiny-router",
"@frontity/html2react",
"frontity-share",
"frontity-contact-form-7",
"@frontity/head-tags",
],
};
export default settings;