-
Notifications
You must be signed in to change notification settings - Fork 0
/
defaults.js
54 lines (54 loc) · 1.35 KB
/
defaults.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
module.exports = {
styles: {
source: ['./app/styles/app.scss', './app/styles/print.scss'],
watch: './app/styles/**/*.scss',
output: './public/styles/',
autoprefixer: ['> 1%', 'last 3 versions']
},
scripts: {
source: './app/scripts/app.js',
watch: './app/scripts/**/*.js',
output: './public/scripts/',
vendor: './app/scripts/vendor/'
},
izr: {
"classPrefix": "izr-",
"options": [
"addTest",
"setClasses"
],
"feature-detects": [
"test/geolocation",
"test/history",
"test/svg",
"test/touchevents",
"test/video",
"test/css/flexbox",
"test/window/matchmedia"
]
},
templates: {
source: './app/templates/**/*.{html,xml}',
output: './craft/templates/'
},
images: {
source: './app/images/**/*.{jpg,png,svg,gif}',
output: './public/images/'
},
fonts: {
source: './app/fonts/**/*{eot,woff,ttf,svg}',
output: './public/fonts/'
},
icons: {
source: './app/icons/',
output: './public/i/',
colours: {
white: '#FFFFFF',
black: '#000000',
}
},
browserSync: {
proxy: 'http://vulcan.dev',
port: 3000
}
};