We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55a69e5 commit 3c90debCopy full SHA for 3c90deb
.gitignore
@@ -45,5 +45,3 @@ testem.log
45
# System Files
46
.DS_Store
47
Thumbs.db
48
-
49
-src/assets/env.js
src/assets/env.js
@@ -0,0 +1,9 @@
1
+// This file will be overwritten when running in Docker using env.template.js and envsubst
2
+(function (window) {
3
+ window["env"] = window["env"] || {};
4
+ window["env"].PRODUCTION = false;
5
+ window["env"].BASE_URL = "http://localhost:3000/api/v1/"; // For local testing
6
+ window["env"].TABLE_PAGE_SIZE = 25; // For local testing
7
+ window["env"].DAF_USERNAME = "";
8
+ window["env"].DAF_PASSWORD = "";
9
+})(this);
0 commit comments