-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.js
29 lines (29 loc) · 1.03 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
require('apostrophe')({
shortName: 'starter-kit-astro',
bundles: [ '@apostrophecms/blog' ],
modules: {
// Apostrophe module configuration
// *******************************
//
// NOTE: most configuration occurs in the respective modules' directories.
// See modules/@apostrophecms/page/index.js for an example.
//
// Any modules that are not present by default in Apostrophe must at least
// have a minimal configuration here to turn them on: `moduleName: {}`
// ***********************************************************************
// `className` options set custom CSS classes for Apostrophe core widgets.
'@apostrophecms/rich-text-widget': {
},
'@apostrophecms/image-widget': {
},
'@apostrophecms/video-widget': {
},
// `asset` supports the project's webpack build for client-side assets.
asset: {},
// The project's first custom page type.
'default-page': {},
'two-column-widget': {},
'@apostrophecms/blog': {},
'@apostrophecms/blog-page': {}
}
});