-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoptimizely.config.mjs
More file actions
26 lines (25 loc) · 1.05 KB
/
optimizely.config.mjs
File metadata and controls
26 lines (25 loc) · 1.05 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
import { buildConfig } from '@optimizely/cms-sdk';
export default buildConfig({
components: [
'./src/content-types/SeoBlock.ts',
'./src/content-types/ArticlePage.ts',
'./src/content-types/CardBlock.ts',
'./src/content-types/TextElement.ts',
'./src/content-types/RichTextElement.ts',
'./src/content-types/ImageElement.ts',
'./src/content-types/BannerElement.ts',
'./src/content-types/CallToActionElement.ts',
'./src/content-types/LandingPageExperience.ts',
'./src/display-templates/CallToActionElementDisplayTemplate.ts',
'./src/display-templates/TextElementDisplayTemplate.ts',
'./src/display-templates/ImageElementDisplayTemplate.ts',
'./src/display-templates/LandingPageExperienceDisplayTemplate.ts',
'./src/display-templates/BlankSectionDisplayTemplate.ts',
'./src/display-templates/RowDisplayTemplate.ts',
'./src/display-templates/ColumnDisplayTemplate.ts',
],
propertyGroups: [
{ key: 'media', displayName: 'Media', sortOrder: 2 },
{ key: 'seo', displayName: 'SEO', sortOrder: 3 },
],
});