File: /var/www/linde-ai/html/scripts/assets.js
/**
* Import all "modules" that are passed by a require.context call.
*/
function importAll(requireContext) {
return requireContext.keys().map(requireContext);
}
// Require each folder of static assets that cannot be automatically included in other ways
// Fonts are not imported this way since they are imported through CSS
importAll(require.context("./../assets/images", true, /\.(png|jpe?g|svg|gif)$/));
importAll(require.context("./../assets/favicon", true, /\.(png|jpe?g|svg|gif|ico)$/));
importAll(require.context("./../assets/icons", true, /\.svg/));