mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00

I doubt the app will ever break because of those semi-colon omissions but I added them, just to be safe.
20 lines
460 B
JavaScript
20 lines
460 B
JavaScript
/*
|
|
Let's import all our files here.
|
|
*/
|
|
|
|
// general business logic of this customization
|
|
import "./callbacks.js";
|
|
import "./emails.js";
|
|
import "./custom_fields.js";
|
|
import "./i18n.js";
|
|
import "./groups.js";
|
|
import "./fragments.js";
|
|
|
|
// custom components
|
|
import "./components/CustomLogo.jsx";
|
|
import "./components/CustomNewsletter.jsx";
|
|
import "./components/CustomPostsItem.jsx";
|
|
import "./components/MyCustomPage.jsx";
|
|
|
|
// custom routes
|
|
import "./routes.jsx";
|