summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.js b/main.js
index bb4c7ab..36267e1 100644
--- a/main.js
+++ b/main.js
@@ -46,7 +46,8 @@ const logout = () => {
const configureClient = async() => {
auth0 = await createAuth0Client({
domain: authConfig.domain,
- client_id: authConfig.clientId
+ client_id: authConfig.clientId,
+ cacheLocation: "localstorage",
});
window.auth0 = auth0;
};