Skip to content

Commit 30182b1

Browse files
fixed browser example path
1 parent ff1286a commit 30182b1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

example/browser/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Exceptionless } from "../../packages/browser/dist/index";
1+
import { Exceptionless } from "../../node_modules/@exceptionless/browser/dist/index.min.js";
22
import { divide } from "./math.js";
33
import { TextAreaLogger } from "./text-area-logger.js";
44

example/express/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ const app = express();
44
import { Exceptionless } from "@exceptionless/node";
55

66
await Exceptionless.startup((c) => {
7-
c.apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw";
8-
c.serverUrl = "http://localhost:5000";
7+
c.apiKey = "W7pdTehUAH8IrCxd4PllAs6ZheUpGLcrd6WpodDl";
8+
// c.serverUrl = "http://localhost:5000";
99
c.useDebugLogger();
1010

1111
c.defaultTags.push("Example", "Node");

0 commit comments

Comments
 (0)