I am trying to import the third party plugins into a landing page in the system. The documentation here clearly states that the default path for the files should be lib/modules/apostrophe-assets/public/css/ and when I add the needed plugin css and js files in the folder and restart the server the are not picked up by the system. I also checked to see if the files were getting minimized and added to the one compress js/css file but they are not. The code in app.js file is
// Standard Apostrophe Modules
'apostrophe-assets': {
stylesheets: [
{
name: 'bootstrap',
name: 'site',
name: 'font-awesome'
}
],
script : [
{
name: 'bootstrap',
name: 'site',
name: 'jquery.matchHeight',
name: 'jquery.scrollTo'
}
]
},