-
Notifications
You must be signed in to change notification settings - Fork 33
/
config.json.dist
61 lines (61 loc) · 1.28 KB
/
config.json.dist
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
{
"bundles": [
"frontend",
"admin",
"login",
"editor"
],
"variables": {
"color": {
"material-red": "#f44336",
"material-pink": "#e91e63",
"material-purple": "#9c27b0",
"material-deep-purple": "#673ab7",
"material-indigo": "#3f51b5",
"material-blue": "#2196f3",
"material-light-blue": "#03a9f4",
"material-cyan": "#00bcd4",
"material-teal": "#009688",
"material-green": "#4caf50",
"material-light-green": "#8bc34a",
"material-lime": "#cddc39",
"material-yellow": "#ffeb3b",
"material-amber": "#ffc107",
"material-orange": "#ff9800",
"material-deep-orange": "#ff5722",
"material-brown": "#795548",
"material-grey": "#9e9e9e",
"material-blue-grey": "#607d8b"
},
"font-size": {
"xs": "12px",
"s": "16px",
"m": "20px",
"l": "28px",
"xl": "36px"
}
},
"development": {
"url": "http://localhost/",
"port": 3000
},
"release": {
"configWhitelist": [
"variables"
],
"include": [
"app/",
"dist/",
"languages/",
"vendor/",
"views/",
"config.json",
"LICENSE",
"README.md",
"readme.txt",
"screenshot.png",
"style.css",
"*.php"
]
}
}