forked from argomaintainer/jsbbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
64 lines (58 loc) · 1.38 KB
/
config.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
SIGNV = 2006;
NOCACHE = false;
seajs.config({
plugins: ['shim', 'text', 'nocache'],
debug: true,
alias: {
'jquery': {
src: 'lib/jquery.js',
exports: 'jQuery'
},
'timeformat': 'lib/timeformat.js',
'jquery.tmpl': {
src: 'lib/jquery.tmpl.js'
},
'userbox': 'lib/userbox.js',
'handler': 'lib/handler.js',
'handler-ann': 'lib/handler-ann.js',
'argo_api': {
src: 'lib/argo_api.js'
},
'cookie': {
src: 'lib/cookie.js'
},
'markdown': {
src: 'lib/markdown.js'
},
'format': 'lib/format.js',
'slides': {
src: 'lib/slides.js'
},
'scrollbar': 'lib/scrollbar.js',
'jquery.mousewheel': {
src: 'lib/jquery.mousewheel.js'
},
'jquery.jqpagination': {
src: 'lib/jquery.jqpagination.js'
},
'thinish': {
src: 'lib/thinish.js',
},
'data': {
src: './data.js',
},
'jquery.form': {
src: 'lib/jquery.form.js',
},
'bootstrap': {
src: 'lib/bootstrap.js',
exports: 'jQuery'
},
'url': {
src: 'lib/url.js'
}
},
map: [
[ /(js\/.*(?:css|js))$/i, '$1?' + SIGNV]
]
});