-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
19 lines (18 loc) · 847 Bytes
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
var liveServer = require("live-server");
var params = {
port: 8080, // Set the server port. Defaults to 8080.
host: "0.0.0.0", // Set the address to bind to. Defaults to 0.0.0.0 or process.env.IP.
root: ".", // Set root directory that's being server. Defaults to cwd.
open: true, // When false, it won't load your browser by default.
ignore: 'scss,my/templates', // comma-separated string for paths to ignore
file: "index.html", // When set, serve this file for every 404 (useful for single-page applications)
wait: 1000, // Waits for all changes, before reloading. Defaults to 0 sec.
mount: [
["/css", "./css"],
["/lib","./lib"],
["/plugin","./plugin"],
["/js","./js"],
["/pic","./pic"]],
logLevel: 2 // 0 = errors only, 1 = some, 2 = lots
};
liveServer.start(params);