only run once

This commit is contained in:
Seth Trowbridge 2023-07-30 13:29:15 -04:00
parent 78230a5672
commit 1f6ab7cf47

View File

@ -259,8 +259,13 @@ export const Configure =(config:ConfigurationArgs)=>
ImportMapReload(); ImportMapReload();
} }
let running = false;
export default async()=> export default async()=>
{ {
if(running){return};
running = true;
await ImportMapReload(); await ImportMapReload();
try try
{ {