Skip to content

Commit

Permalink
Merge pull request #112 from zhiyan114/master
Browse files Browse the repository at this point in the history
Fixed index importing before sentry loads
  • Loading branch information
zhiyan114 authored May 16, 2024
2 parents 1f382f0 + 913f0a1 commit 59fd5fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/loader.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* Software Loader */


// Load Env Variable
import {config as dotenv} from "dotenv";
dotenv();
Expand Down Expand Up @@ -109,4 +108,5 @@ registerInstrumentations({
provider.register();

// Start the main software
import './index';
//import './index';
require("./index"); // Workaround for esbuild's non-ordered import

0 comments on commit 59fd5fd

Please sign in to comment.