forked from jarrekk/Jalpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiles.conf.js
79 lines (79 loc) · 2.53 KB
/
files.conf.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
module.exports = {
CSSJSfiles: [{
name: '404 page',
quotefile: '404.html',
prefix: 'fof-',
type: 'js',
list: [
'node_modules/jquery/dist/jquery.js',
'node_modules/bootstrap/dist/js/bootstrap.js',
'node_modules/pace-progress/pace.js'
]
}, {
name: 'index page',
quotefile: '_includes/index_head.html',
prefix: 'app-index-',
type: 'js',
list: [
'node_modules/jquery/dist/jquery.js',
'node_modules/bootstrap/dist/js/bootstrap.js',
'node_modules/chart.js/dist/Chart.js',
'node_modules/pace-progress/pace.js',
'node_modules/wowjs/dist/wow.js',
'static/js/scroll.js',
'static/js/count.js'
]
}, {
name: 'i18next page',
quotefile: '_includes/index_head.html',
prefix: 'i18-',
type: 'js',
list: [
'static/js/i18next.min.js',
'static/js/localization.js'
]
}, {
name: 'blog pages',
quotefile: '_includes/head.html',
prefix: 'app-',
type: 'js',
list: [
'node_modules/jquery/dist/jquery.js',
'search/js/bootstrap3-typeahead.min.js',
'node_modules/bootstrap/dist/js/bootstrap.js',
'node_modules/metismenu/dist/metisMenu.js',
'node_modules/jquery-slimscroll/jquery.slimscroll.js',
'node_modules/peity/jquery.peity.js',
'node_modules/pace-progress/pace.js',
'node_modules/wowjs/dist/wow.js',
'static/js/scroll.js',
'static/js/count.js'
]
}, {
name: 'blog pages\' jPage',
quotefile: '_includes/category.html',
prefix: 'jPage-',
type: 'js',
list: [
'static/js/jPages.js',
'static/js/js.js'
]
}, {
name: 'all pages',
quotefile: '_includes/head.html',
prefix: 'app-',
type: 'css',
list: [
'node_modules/normalize.css/normalize.css',
'node_modules/bootstrap/dist/css/bootstrap.css',
'node_modules/animate.css/animate.css',
'node_modules/components-font-awesome/css/font-awesome.css',
'node_modules/font-mfizz/dist/font-mfizz.css',
'node_modules/gritter/jquery.gritter.css',
'search/css/cb-search.css',
'static/css/pygments.css',
// 'static/css/style.css'
'static/css/style-purify.css'
]
}]
}