index.js 493 B

123456789101112131415161718192021222324252627
  1. if (process.env.FEATURE_VIDEOPLAYER === '1') {
  2. import('./videoplayer')
  3. }
  4. if (process.env.FEATURE_TOC === '1') {
  5. import('./toc')
  6. }
  7. if (process.env.FEATURE_DARKMODE === '1') {
  8. import('./darkmode')
  9. }
  10. if (process.env.FEATURE_FLOWCHART === '1') {
  11. import('./flowchart')
  12. }
  13. if (process.env.FEATURE_SYNTAXHIGHLIGHT === '1') {
  14. import('./syntaxhighlight')
  15. }
  16. if (process.env.FEATURE_MATH === '1') {
  17. import('./math')
  18. }
  19. if (process.env.FEATURE_EMBEDPDF === '1') {
  20. import('./embedpdf')
  21. }