From fd6c7b48069ce1dc942234e906fc48f5fa229ca8 Mon Sep 17 00:00:00 2001 From: Jerryplusy Date: Wed, 24 Sep 2025 23:29:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=9B=B4=E6=AD=A3=E9=83=A8=E5=88=86path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- constants/path.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/constants/path.js b/constants/path.js index 196c37d..198bbee 100644 --- a/constants/path.js +++ b/constants/path.js @@ -13,16 +13,16 @@ const Path = { components: path.join(rootDir, 'components'), defaultConfig: path.join(rootDir, 'config/config.json'), defaultConfigPath: path.join(rootDir, 'config'), - config: path.resolve(rootDir, '../../data/crystelf'), + config: path.resolve(rootDir, '../../data/crystelfadmin'), constants: path.join(rootDir, 'constants'), lib: path.join(rootDir, 'lib'), models: path.join(rootDir, 'models'), index: path.join(rootDir, 'index.js'), pkg: path.join(rootDir, 'package.json'), yunzai: path.join(rootDir, '../../'), - data: path.join(rootDir, '../../data/crystelf/data'), + data: path.join(rootDir, '../../data/crystelfadmin/data'), rssHTML: path.join(rootDir, 'constants/rss/rss_template.html'), - rssCache: path.join(rootDir, '../../data/crystelf'), + rssCache: path.join(rootDir, '../../data/crystelfadmin'), }; const configFile = fs.readFileSync(Path.defaultConfig, 'utf8');