aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/config.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/config.ts b/src/util/config.ts
index 3eb8d1c..3f14db1 100644
--- a/src/util/config.ts
+++ b/src/util/config.ts
@@ -66,12 +66,12 @@ export const handleStartup = async (
await persistTemplate({
inputFile: path.join(publicPath, "templates", "bash.template"),
outputFile: path.join(hostDir, "bash"),
- context: { targetUrl }
+ context: { TARGET_URL: targetUrl }
} as Template);
await persistTemplate({
inputFile: path.join(publicPath, "templates", "index.html.template"),
outputFile: path.join(hostDir, "index.html"),
- context: { targetUrl }
+ context: { TARGET_URL: targetUrl }
} as Template);
return mongo;