-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.json
executable file
·38 lines (38 loc) · 1.74 KB
/
webpack.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"frontend": {
"scripts": [
],
"styles": []
},
"backend": {
"scripts": [
"node_modules/bootstrap-sass/assets/javascripts/bootstrap.js",
"node_modules/bootstrap-confirmation2/bootstrap-confirmation.js",
"node_modules/bootstrap-datepicker/js/bootstrap-datepicker.js",
"node_modules/datatables/media/js/jquery.dataTables.js",
"node_modules/easy-pie-chart/dist/jquery.easypiechart.js",
"node_modules/jquery-locationpicker/dist/locationpicker.jquery.js",
"node_modules/jquery-uniform/lib/jquery.uniform.js",
"node_modules/icheck/icheck.js",
"node_modules/jstree/dist/jstree.js",
"node_modules/select2/select2.js",
"node_modules/jquery-slimscroll/jquery.slimscroll.js",
"node_modules/tinymce/tinymce.js",
"node_modules/tinymce/plugins/*/plugin.js",
"node_modules/tinymce/themes/modern/theme.js",
"vendor/distilleries/datatable-builder/src/resources/assets/js/**/*.js",
"vendor/distilleries/expendable/src/resources/assets/backend/js/**/*.js"
],
"styles": [
"node_modules/select2/select2.css"
]
},
"copy": {
"resources/assets/backend/fonts": "public/assets/backend/fonts",
"resources/assets/backend/images": "public/assets/backend/images",
"resources/assets/vendor/moxiemanager": "public/assets/moxiemanager",
"vendor/distilleries/expendable/src/resources/assets/backend/images": "public/assets/backend/images",
"node_modules/datatables/media/images": "public/assets/images",
"node_modules/tinymce/skins/lightgray": "public/assets/backend/skins/lightgray"
}
}