From 08cbc34d6bc9f37ed0646ab2b7d848524de6d9e2 Mon Sep 17 00:00:00 2001 From: Ansolve Date: Tue, 2 Jan 2024 15:39:07 +0800 Subject: [PATCH] chore: export config from index. --- noname/util/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/noname/util/index.js b/noname/util/index.js index 7d27f1050..040da3b82 100644 --- a/noname/util/index.js +++ b/noname/util/index.js @@ -3,6 +3,9 @@ export const assetURL = typeof nonameInitialized != 'string' || nonameInitialize export const GeneratorFunction = (function* () { }).constructor; export const AsyncFunction = (async function () { }).constructor; export const userAgent = navigator.userAgent.toLowerCase(); + +export * as config from './config.js' + /** * 不能被new的类 */