Skip to content

Commit

Permalink
Fixed npm start.
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed Nov 20, 2023
1 parent 306abe2 commit b4a5cca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion demo/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Gleap.setWSApiUrl("ws://0.0.0.0:8080");

// Gleap.setLanguage("en");

Gleap.initialize("kqHBGdyxG0qq6gcfHDqgNkxg5r0Ut0Le");
Gleap.initialize("ogWhNhuiZcGWrva5nlDS8l7a78OfaLlV");

/*Gleap.setUrlHandler((url, newTab) => {
alert("URL: " + url + " newTab: " + newTab);
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"version": "12.8.1",
"main": "build/index.js",
"scripts": {
"start": "webpack serve",
"build": "webpack",
"test": "jest",
"prepare": "npm run build",
"trypublish": "npm publish || true"
"start": "NODE_OPTIONS=--openssl-legacy-provider webpack serve",
"build": "NODE_OPTIONS=--openssl-legacy-provider webpack",
"test": "NODE_OPTIONS=--openssl-legacy-provider jest",
"prepare": "NODE_OPTIONS=--openssl-legacy-provider npm run build",
"trypublish": "NODE_OPTIONS=--openssl-legacy-provider npm publish || true"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit b4a5cca

Please sign in to comment.