-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.js
56 lines (53 loc) · 1.5 KB
/
app.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
49
50
51
52
53
54
55
56
import apostrophe from 'apostrophe';
apostrophe({
root: import.meta,
shortName: 'a4-ecommerce-starter',
modules: {
// Design system: register only when not in production.
// Install via `npm install @corllete/apos-ds` first.
// Be sure to add some additonal configuration in
// `modules/@corllete/apos-ds/index.js` and
// `modules/@corllete/apos-ds-page-type/views/layout/preview.html`
// and park the page in `modules/@apostrophecms/page/index.js` as
// described in the docs.
// ...(process.env.NODE_ENV !== 'production'
// ? {
// '@corllete/apos-ds': {
// options: {
// modules: [ 'theme' ],
// docs: false
// }
// },
// '@corllete/apos-ds-page-type': {
// options: {
// legacyCodeBlocks: false,
// useReleaseId: false
// }
// }
// }
// : {}
// ),
// END Design system
'@apostrophecms/vite': {},
'@apostrophecms/open-graph': {},
'@apostrophecms/seo': {},
i18n: {},
tag: {},
'product-category': {},
'product-category-page': {},
product: {},
'product-page': {},
'default-page': {},
'content-widget': {},
'hero-full-widget': {},
'hero-split-widget': {},
'cta-widget': {},
'promo-widget': {},
'blockquote-widget': {},
'product-widget': {},
'product-featured-widget': {},
'product-category-widget': {},
// All assets/client JS and server side templates.
theme: {}
}
});