homegrade_theme_production/resources/js/app.js
2023-10-17 17:36:31 +02:00

15 lines
465 B
JavaScript

import editorInit from './editor';
import menuInit from './menus';
import singleConseil from './single-conseil';
import SchemaBulletPointsInit from './schema-bullet-points';
import taxonomyThematiqueFaqInit from './taxonomy-thematique-(faq)';
// window.addEventListener('load', function () {});
window.addEventListener('DOMContentLoaded', (event) => {
menuInit();
SchemaBulletPointsInit();
singleConseil();
editorInit();
taxonomyThematiqueFaqInit();
});