forked from martoncsukas/backend-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
21 lines (14 loc) · 646 Bytes
/
config.js
File metadata and controls
21 lines (14 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/******************************************************************************************
This will be copied to config.js by the CI Server as part of the test build process.
******************************************************************************************/
module.exports = {
// Build target directory, this is where all the static files will end up
target: "./static",
htmltarget: "./static",
// Font service url
fonts: "//fast.fonts.net/jsapi/8f4aef36-1a46-44be-a573-99686bfcc33b.js",
// The root directory for all api calls
apiroot: "http://localhost:8085/",
// Root directory for static content
staticRoot: "/"
};