DocsPlugins.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. const Plugins = [
  2. // AdminLTE Dist
  3. {
  4. from: 'dist/css/',
  5. to : 'docs/assets/css/'
  6. },
  7. {
  8. from: 'dist/js/',
  9. to : 'docs/assets/js/'
  10. },
  11. // jQuery
  12. {
  13. from: 'node_modules/jquery/dist/',
  14. to : 'docs/assets/plugins/jquery/'
  15. },
  16. // Popper
  17. {
  18. from: 'node_modules/popper.js/dist/',
  19. to : 'docs/assets/plugins/popper/'
  20. },
  21. // Bootstrap
  22. {
  23. from: 'node_modules/bootstrap/dist/js/',
  24. to : 'docs/assets/plugins/bootstrap/js/'
  25. },
  26. // Font Awesome
  27. {
  28. from: 'node_modules/@fortawesome/fontawesome-free/css/',
  29. to : 'docs/assets/plugins/fontawesome-free/css/'
  30. },
  31. {
  32. from: 'node_modules/@fortawesome/fontawesome-free/webfonts/',
  33. to : 'docs/assets/plugins/fontawesome-free/webfonts/'
  34. },
  35. // overlayScrollbars
  36. {
  37. from: 'node_modules/overlayscrollbars/js/',
  38. to : 'docs/assets/plugins/overlayScrollbars/js/'
  39. },
  40. {
  41. from: 'node_modules/overlayscrollbars/css/',
  42. to : 'docs/assets/plugins/overlayScrollbars/css/'
  43. }
  44. ]
  45. module.exports = Plugins