forked from IgniteUI/igniteui-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bs-config.js
36 lines (35 loc) · 929 Bytes
/
bs-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
"use strict";
module.exports = {
server: {
middleware: {
2: {
route: "/index.html",
handle: function (req, res, next) {
if (req.url === "/") {
res.writeHead(302, {
"Location": "/demos/index.html"
});
res.end();
}
return next();
}
}
}
},
notify: {
styles: {
top: 'auto',
bottom: '0',
margin: '0px',
padding: '5px',
position: 'fixed',
fontSize: '10px',
zIndex: '9999',
borderRadius: '5px 0px 0px',
color: 'white',
textAlign: 'center',
display: 'block',
backgroundColor: 'rgba(60, 197, 31, 0.498039)'
}
}
};