This repository was archived by the owner on Mar 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathwebpack.mix.js
148 lines (131 loc) · 5.62 KB
/
webpack.mix.js
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
const mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel application. By default, we are compiling the Sass
| file for the application as well as bundling up all the JS files.
|
*/
// Word Map
mix.styles([
'resources/css/leaflet/Leaflet.css',
'resources/css/leaflet/Leaflet.Easy-Button.css',
'resources/css/leaflet/Leaflet.Geoman.css',
'resources/css/leaflet/Leaflet.Fullscreen.css',
], 'public/css/leaflet.css');
mix.scripts([
'resources/js/worldmap/Leaflet.min.js',
'resources/js/worldmap/Leaflet.Geoman.min.js',
'resources/js/worldmap/Leaflet.Easy-Button.js',
'resources/js/worldmap/Leaflet.Fullscreen.js',
'resources/js/worldmap/xSROMap.js',
'resources/js/worldmap/main.js',
], 'public/js/worldmap.min.js');
// Backend css
mix.sass(
'resources/css/backend/scss/sb-admin-2.scss',
'public/css/backend/app.css'
);
mix.styles([
'resources/css/backend/vmenuModule.css',
], 'public/css/components.css');
// Backend Javascript
mix.scripts([
'resources/vendor/jquery/jquery.min.js',
'resources/js/frontend/jquery-ui.js', // Item Hover Information
'resources/js/frontend/jquery-migrate.js', // Item Hover Information
'resources/vendor/jquery-easing/jquery.easing.min.js', // Item Hover Information
'resources/vendor/bootstrap/js/bootstrap.bundle.min.js',
'resources/js/frontend/bsTooltipChange.js', // Item Hover Information
'resources/vendor/jquery-easing/jquery.easing.min.js',
'resources/js/backend/sb-admin-2.js',
'resources/js/backend/summernote-bs4.js',
'resources/vendor/jquery-easing/jquery.easing.min.js',
'resources/vendor/chart.js/Chart.bundle.min.js',
'resources/js/backend/moment.js',
'resources/js/backend/vmenuModule.js',
'resources/vendor/axios/axios.min.js',
'resources/vendor/bootbox/bootbox.all.min.js',
], 'public/js/backend/app.js');
// Frontend css
mix.sass(
'resources/css/frontend/scss/main.scss',
'public/css/app.css'
);
// Frontend css for arabic
mix.sass(
'resources/css/frontend/scss/main-rtl.scss',
'public/css/app-rtl.css'
);
// Frontend Javascript
mix.scripts([
'resources/vendor/jquery/jquery.min.js',
'resources/js/frontend/jquery-ui.js',
'resources/js/frontend/jquery-migrate.js',
'resources/vendor/jquery-easing/jquery.easing.min.js',
'resources/vendor/bootstrap/js/bootstrap.bundle.min.js',
'resources/js/frontend/bsTooltipChange.js',
'resources/js/backend/summernote-bs4.js',
'resources/vendor/jquery-easing/jquery.easing.min.js',
'resources/vendor/chart.js/Chart.bundle.min.js',
'resources/js/backend/moment.js',
'resources/js/frontend/timers.js',
'resources/js/frontend/minimap.js',
'resources/js/backend/vmenuModule.js',
'resources/vendor/axios/axios.min.js',
'resources/vendor/bootbox/bootbox.all.min.js',
], 'public/js/app.js');
mix.scripts([
'resources/js/frontend/webinventory/main.js'
], 'public/js/webinventory.js');
//datatables
mix.sass(
'resources/vendor/datatables/datatables.scss',
'public/plugins/datatables/css/dataTables.css'
);
mix.scripts([
'resources/vendor/datatables/js/jquery.dataTables.js',
'resources/vendor/datatables/js/dataTables.bootstrap4.js',
'resources/vendor/datatables/js/dataTables.autoFill.js',
'resources/vendor/datatables/js/autoFill.bootstrap4.js',
'resources/vendor/datatables/js/dataTables.buttons.js',
'resources/vendor/datatables/js/buttons.bootstrap4.js',
'resources/vendor/datatables/js/buttons.colVis.js',
'resources/vendor/datatables/js/buttons.flash.js',
'resources/vendor/datatables/js/flashExport.swf.js',
'resources/vendor/datatables/js/buttons.html5.js',
'resources/vendor/datatables/js/buttons.print.js',
'resources/vendor/datatables/js/dataTables.colReorder.js',
'resources/vendor/datatables/js/colReorder.bootstrap4.js',
'resources/vendor/datatables/js/dataTables.fixedColumns.js',
'resources/vendor/datatables/js/fixedColumns.bootstrap4.js',
'resources/vendor/datatables/js/dataTables.fixedHeader.js',
'resources/vendor/datatables/js/fixedHeader.bootstrap4.js',
'resources/vendor/datatables/js/dataTables.keyTable.js',
'resources/vendor/datatables/js/keyTable.bootstrap4.js',
'resources/vendor/datatables/js/dataTables.responsive.js',
'resources/vendor/datatables/js/responsive.bootstrap4.js',
'resources/vendor/datatables/js/dataTables.rowGroup.js',
'resources/vendor/datatables/js/rowGroup.bootstrap4.js',
'resources/vendor/datatables/js/dataTables.rowReorder.js',
'resources/vendor/datatables/js/rowReorder.bootstrap4.js',
'resources/vendor/datatables/js/dataTables.scroller.js',
'resources/vendor/datatables/js/scroller.bootstrap4.js',
'resources/vendor/datatables/js/dataTables.searchBuilder.js',
'resources/vendor/datatables/js/searchBuilder.bootstrap4.js',
'resources/vendor/datatables/js/dataTables.searchPanes.js',
'resources/vendor/datatables/js/searchPanes.bootstrap4.js',
'resources/vendor/datatables/js/dataTables.select.js',
'resources/vendor/datatables/js/select.bootstrap4.js',
'resources/vendor/datatables/js/select.bootstrap4.js',
'resources/vendor/datatables/js/buttons.server-side.js',
'resources/vendor/datatables/js/jszip.js',
'resources/vendor/datatables/js/pdfmake.js',
'resources/vendor/datatables/js/vfs_fonts.js',
], 'public/plugins/datatables/js/dataTables.js');
if (mix.inProduction()) {
mix.version();
}