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

module.exports = Plugins