forked from Slgoetz/lemniscate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
38 lines (34 loc) · 1.01 KB
/
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
37
38
/* ---------------------------------------
CONFIG
--------------------------------------- */
var dist = './';
module.exports = {
dest: {
js : dist+'public/js',
images : dist+'public/images',
css : dist+'public/css',
fonts : dist+'public/fonts'
},
path: {
html : dist+'*.html',
htmlEntry : [dist+'*.html', dist+'include/**/*.html'],
public : dist+'public',
webpack : dist+'assets/scripts/app.js',
js : dist+'assets/scripts/**/*.js',
less : dist+'assets/less/**/*',
lessEntry : dist+'assets/less/main.less',
fonts : dist+'assets/fonts/**/*',
images : dist+'assets/images/**/*',
},
browsersync: {
proxy: ' infinite.dev',
baseDir: '_site',
// logConnections: true,
// port: '80',
// logLevel: 'debug',
// logConnections: true,
watchOptions: {
debounceDelay: 2000 // This introduces a small delay when watching for file change events to avoid triggering too many reloads
}
}
};