From 18a7ca4aa83351c9814aa64a84339279f03f719c Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 21 Sep 2022 17:40:17 -0400 Subject: [PATCH] *Update plugin folder location to be beside the config folder --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index 98b6608..5db87a7 100644 --- a/src/config.ts +++ b/src/config.ts @@ -30,7 +30,7 @@ config.inject({ configDir, port: 8080, logLevel: "info", - pluginDir: path.join(configDir, "plugins"), + pluginDir: path.resolve(configDir, "..", "plugins"), plugins: ["core"], ssl: true, });