forked from deco-cx/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeco.ts
43 lines (40 loc) · 808 Bytes
/
deco.ts
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
const app = (name: string) => ({ dir: name, name });
const compatibilityApps = [{
dir: "./compat/$live",
name: "$live",
}, {
dir: "./compat/std",
name: "deco-sites/std",
}];
const config = {
apps: [
app("ai-assistants"),
app("openai"),
app("brand-assistant"),
app("implementation"),
app("weather"),
{
dir: "admin",
name: "deco-sites/admin",
},
app("analytics"),
app("sourei"),
app("typesense"),
app("algolia"),
app("handlebars"),
app("vtex"),
app("vnda"),
app("wake"),
app("linx"),
app("shopify"),
app("nuvemshop"),
app("website"),
app("commerce"),
app("workflows"),
app("verified-reviews"),
app("power-reviews"),
app("decohub"),
...compatibilityApps,
],
};
export default config;