From 8d9af825219c7d5ae0818956bee6d8d2d500c20c Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Thu, 6 Jun 2024 14:55:37 -0500 Subject: [PATCH] fix(import): add missing nconf --- website/server/libs/content.js | 1 + 1 file changed, 1 insertion(+) diff --git a/website/server/libs/content.js b/website/server/libs/content.js index 3c25e72e17..e333105fe0 100644 --- a/website/server/libs/content.js +++ b/website/server/libs/content.js @@ -2,6 +2,7 @@ import _ from 'lodash'; import path from 'path'; import fs from 'fs'; import common from '../../common'; +import nconf from 'nconf'; import packageInfo from '../../../package.json'; export const CONTENT_CACHE_PATH = path.join(__dirname, '/../../../content_cache/');