2021-01-13 11:25:45 -08:00
|
|
|
// This configures the apostrophe-assets module to push a 'site.less'
|
|
|
|
|
// stylesheet by default, and to use jQuery 3.x
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
jQuery: 3,
|
|
|
|
|
stylesheets: [
|
2021-03-16 14:36:03 -07:00
|
|
|
{name: 'common'},
|
2021-01-13 11:25:45 -08:00
|
|
|
{name: 'pre'},
|
|
|
|
|
{name: 'bootstrap'},
|
|
|
|
|
{name: 'main'},
|
|
|
|
|
{name: 'topBar'},
|
|
|
|
|
{name: 'menu'},
|
|
|
|
|
],
|
|
|
|
|
scripts: [
|
|
|
|
|
{name: 'bootstrap'},
|
|
|
|
|
{name: 'site'}
|
|
|
|
|
]
|
|
|
|
|
};
|