From d555b42d561c88d8e9441c191d75717262d0cbb1 Mon Sep 17 00:00:00 2001 From: Seebomega <deroche.sebastien@gmail.com> Date: Mon, 21 Aug 2023 00:51:22 +0200 Subject: [PATCH] put back dev values --- public/index.html | 2 +- public/src/environment.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/public/index.html b/public/index.html index de8013ae..0cd92364 100644 --- a/public/index.html +++ b/public/index.html @@ -7,6 +7,6 @@ </head> <body aurelia-app="main"> - <script src="scripts/vendor-bundle-f21e471e60.js" data-main="aurelia-bootstrapper"></script> + <script src="scripts/vendor-bundle.js" data-main="aurelia-bootstrapper"></script> </body> </html> diff --git a/public/src/environment.js b/public/src/environment.js index 94292ae2..39df1ccc 100644 --- a/public/src/environment.js +++ b/public/src/environment.js @@ -1,6 +1,6 @@ export default { - debug: false, - testing: false, - apiUrl: 'https://api.dnd.market', + debug: true, + testing: true, + apiUrl: 'http://localhost:3000', discordOauthUrl: (state) => `https://discord.com/api/oauth2/authorize?client_id=1138727613247008869&redirect_uri=https%3A%2F%2Fapi.dnd.market%2Fv1%2Fauth%2Fcallback&response_type=code&scope=identify%20guilds%20email%20guilds.join%20connections&state=${state}` }; -- GitLab