mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
14 lines
885 B
Diff
14 lines
885 B
Diff
diff --git a/dist/util/forge-config.js b/dist/util/forge-config.js
|
|
index 3466ac1a340c8dfe5ea8997178961e8328457d68..ceb33770db48df80e4355e6bac12e8c99162d7bc 100644
|
|
--- a/dist/util/forge-config.js
|
|
+++ b/dist/util/forge-config.js
|
|
@@ -130,7 +130,7 @@ exports.default = async (dir) => {
|
|
try {
|
|
// The loaded "config" could potentially be a static forge config, ESM module or async function
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
- const loaded = require(path_1.default.resolve(dir, forgeConfig));
|
|
+ const loaded = await import(require('node:url').pathToFileURL(path_1.default.join(dir, forgeConfig)))
|
|
const maybeForgeConfig = 'default' in loaded ? loaded.default : loaded;
|
|
forgeConfig = typeof maybeForgeConfig === 'function' ? await maybeForgeConfig() : maybeForgeConfig;
|
|
}
|