-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
43 lines (43 loc) · 1019 Bytes
/
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
{
"global": {
"fonts": [
"bower_components/mdi/fonts/*",
"bower_components/font-awesome/webfonts/*",
"bower_components/linearicons/dist/web-font/fonts/*"
],
"css": [
"src/assets/fonts/fonts.css"
],
"js": [
"bower_components/jquery/dist/jquery.min.js",
"bower_components/vanilla-lazyload/dist/lazyload.min.js"
]
},
"path": {
"dist": "dist",
"html": {
"src": "src/views/**/*.pug",
"allFile": "src/**/*.pug",
"dist": "dist"
},
"css": {
"mainFile": "src/components/main.sass",
"src": "src/components/**/*.sass",
"dist": "dist/css"
},
"js": {
"mainFile": "src/components/main.js",
"src": "src/components/**/*.js",
"dist": "dist/js"
},
"image": {
"src": "src/assets/images/**/*.{svg,gif,png,jpg,jpeg,webp}",
"dist": "dist/img"
},
"font": {
"src": "src/assets/fonts/**/*.{woff2,woff,eot,ttf}",
"dist": "dist/fonts"
}
},
"PORT": 8000
}