hugo-toha/assets/scripts/features/index.js
2023-01-04 18:15:37 -08:00

19 lines
326 B
JavaScript

if (process.env.FEATURE_VIDEOPLAYER) {
import('./videoplayer');
}
if (process.env.FEATURE_TOC) {
import('./toc');
}
if (process.env.FEATURE_DARKMODE) {
import('./darkmode');
}
if (process.env.FEATURE_FLOWCHART) {
import('./flowchart');
}
if (process.env.FEATURE_SYNTAXHIGHLIGHT) {
import('./syntaxhighlight');
}