mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
602 B
34 lines
602 B
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'
|
|
},
|
|
// Chart.js 2
|
|
{
|
|
from: 'node_modules/chart.js/dist/',
|
|
to: 'plugins/chart.js'
|
|
}
|
|
]
|
|
|
|
module.exports = Plugins
|