-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.js
More file actions
49 lines (47 loc) · 1.17 KB
/
config.js
File metadata and controls
49 lines (47 loc) · 1.17 KB
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
49
const starters = [
{
name: "nextjs",
repoUrl: "https://github.com/stackbit-themes/nextjs-starter",
},
{
name: "ts-nextjs",
repoUrl: "https://github.com/stackbit-themes/ts-mui-nextjs-starter",
},
{
name: "contentful",
repoUrl: "https://github.com/stackbit-themes/contentful-starter",
},
{
name: "full-nextjs",
repoUrl: "https://github.com/stackbit-themes/starter-nextjs-theme",
},
{
name: "small-biz-nextjs",
repoUrl: "https://github.com/stackbit-themes/small-business-nextjs-theme",
},
{
name: "personal-nextjs",
repoUrl: "https://github.com/stackbit-themes/personal-nextjs-theme",
},
];
const examples = {
repoUrl: "https://github.com/stackbit-themes/stackbit-examples",
directories: [
"algolia-search",
"angular-contentful",
"chakra-ui",
"cloudinary-contentful",
"hydrogen-contentful-demo-store",
"ninetailed-personalization",
"onboarding-webapp",
"sveltekit-contentful",
"tutorial-nextjs-contentful",
"tutorial-nextjs-files",
],
};
export default {
defaults: { dirName: "my-stackbit-site", starter: starters[0] },
minGitVersion: "2.25.0",
examples,
starters,
};