Plugins.js 509 B

12345678910111213141516171819202122232425262728
  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. ]
  27. module.exports = Plugins