-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
server.js
43 lines (42 loc) · 811 Bytes
/
server.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
// Dependencies
// =============================================================================
const browserSync = require('browser-sync').create();
const compression = require('compression');
browserSync.init({
files: [
'./dist/**/*.*',
'./docs/**/*.*'
],
ghostMode: {
clicks: false,
forms: false,
scroll: false
},
open: false,
notify: false,
cors: true,
reloadDebounce: 1000,
reloadOnRestart: true,
server: {
baseDir: [
'./docs/'
],
middleware: [
compression()
]
},
serveStatic: [
'./dist/'
],
rewriteRules: [
// Replace CDN URLs with local paths
{
match: /https:\/\/cdn\.jsdelivr\.net\/npm\/docsify-select@1\/dist\//g,
replace: '/'
},
{
match: /https:\/\/cdn\.jsdelivr\.net\/npm\/docsify-select@1/g,
replace: '/docsify-select.min.js'
}
]
});