18 lines
324 B
JavaScript
18 lines
324 B
JavaScript
// 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: [
|
|
{name: 'pre'},
|
|
{name: 'bootstrap'},
|
|
{name: 'main'},
|
|
{name: 'topBar'},
|
|
{name: 'menu'},
|
|
],
|
|
scripts: [
|
|
{name: 'bootstrap'},
|
|
{name: 'site'}
|
|
]
|
|
};
|