Plugins.js 602 B

123456789101112131415161718192021222324252627282930313233
  1. const Plugins = [
  2. // jQuery
  3. {
  4. from: 'node_modules/jquery/dist',
  5. to: 'plugins/jquery'
  6. },
  7. // Popper
  8. {
  9. from: 'node_modules/popper.js/dist',
  10. to: 'plugins/popper'
  11. },
  12. // Bootstrap
  13. {
  14. from: 'node_modules/bootstrap/dist',
  15. to: 'plugins/bootstrap'
  16. },
  17. // Font Awesome
  18. {
  19. from: 'node_modules/font-awesome/css',
  20. to : 'plugins/font-awesome/css'
  21. },
  22. {
  23. from: 'node_modules/font-awesome/fonts',
  24. to : 'plugins/font-awesome/fonts'
  25. },
  26. // Chart.js 2
  27. {
  28. from: 'node_modules/chart.js/dist/',
  29. to: 'plugins/chart.js'
  30. }
  31. ]
  32. module.exports = Plugins