-
Notifications
You must be signed in to change notification settings - Fork 85
/
deco.ts
55 lines (52 loc) · 1.04 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
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("posthog"),
app("decopilot-app"),
app("smarthint"),
app("ra-trustvox"),
app("anthropic"),
app("resend"),
app("emailjs"),
app("konfidency"),
app("mailchimp"),
app("ai-assistants"),
app("files"),
app("openai"),
app("brand-assistant"),
app("implementation"),
app("weather"),
app("blog"),
app("analytics"),
app("sourei"),
app("typesense"),
app("algolia"),
app("vtex"),
app("vnda"),
app("wake"),
app("wap"),
app("linx"),
app("linx-impulse"),
app("shopify"),
app("nuvemshop"),
app("streamshop"),
app("website"),
app("commerce"),
app("workflows"),
app("verified-reviews"),
app("power-reviews"),
app("crux"),
app("decohub"),
app("htmx"),
app("sap"),
...compatibilityApps,
],
};
export default config;