-
Notifications
You must be signed in to change notification settings - Fork 19
/
assets.js
34 lines (30 loc) · 961 Bytes
/
assets.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
// assets to be used by the 'hapi-assets' module based on process.env.NODE_ENV
module.exports = {
development: {
js: ['js/jquery.js',
'js/bootstrap.min.js',
'js/jquery-ui-1.9.2.custom.min.js',
'js/bootstrap-datepicker.js',
'js/fullcalendar/fullcalendar.min.js',
'js/jquery.ui.touch-punch.min.js',
'js/jquery.dcjqaccordion.2.7.js',
'js/jquery.scrollTo.min.js',
'js/jquery.nicescroll.js',
'js/jquery.notify.js',
'js/common-scripts.js'
],
css: ['css/bootstrap.css',
'css/font-awesome/css/font-awesome.css',
'css/datepicker.css',
'css/notify.css',
'js/fullcalendar/bootstrap-fullcalendar.css',
'css/style.css',
'css/style-responsive.css',
'css/to-do.css'
]
},
production: {
js: ['js/scripts.js'],
css: ['css/styles.css']
}
}