-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathdeco.ts
More file actions
37 lines (34 loc) · 667 Bytes
/
deco.ts
File metadata and controls
37 lines (34 loc) · 667 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
26
27
28
29
30
31
32
33
34
35
36
37
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("weather"),
{
dir: "admin",
name: "deco-sites/admin",
},
app("analytics"),
app("typesense"),
app("algolia"),
app("handlebars"),
app("vtex"),
app("vnda"),
app("wake"),
app("linx"),
app("shopify"),
app("website"),
app("commerce"),
app("workflows"),
app("verified-reviews"),
app("power-reviews"),
app("decohub"),
...compatibilityApps,
],
};
export default config;