-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.json
52 lines (52 loc) · 1.33 KB
/
config.json
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
{
"env": "dev",
"use_sass": false,
"bases": {
"dist": "dist/",
"src": "src/"
},
"path": {
"scripts": [
"src/**/*.js",
"!src/bower_components/**"
],
"libs": [
"src/bower_components/angular/angular.min.js",
"src/bower_components/angular-ui-router/release/angular-ui-router.js"
],
"css": [
"src/bower_components/bootstrap/dist/css/bootstrap.css",
"src/bower_components/font-awesome/css/font-awesome.css",
"src/css/**/*.css"
],
"sass": {
"src": [
"src/scss/**/*.scss"
],
"conf": {
"outputStyle": "nested",
"includePaths": [
"src/bower_components/bootstrap-sass/assets/stylesheets/",
"src/bower_components/font-awesome/scss/"
]
}
},
"fonts": [
"src/bower_components/bootstrap/dist/fonts/*",
"src/bower_components/font-awesome/fonts/*"
],
"img": [
"src/img/**/*"
],
"html": [
"src/**/*.html"
],
"singlefiles": [
"src/favicon.ico"
]
},
"serve": {
"root": "dist/",
"port": 8888
}
}