const msalConfig = {
    auth: {
      clientId: "ec81d7d3-24f2-48b3-82ab-0a1872c94845",
      authority: "https://login.microsoftonline.com/e3b48527-4cbe-42a2-b4d2-11b3cc7a86fc",
      redirectUri: "https://starcoms.staging.oarsfugro.com",
    },
    cache: {
      cacheLocation: "sessionStorage", // This configures where your cache will be stored
      storeAuthStateInCookie: false, // Set this to "true" if you are having issues on IE11 or Edge
    }
  };

  // Add here scopes for id token to be used at MS Identity Platform endpoints.
  const loginRequest = {
    scopes: ["openid", "profile", "User.Read"] 
  };

  // Add here scopes for access token to be used at MS Graph API endpoints.
  const tokenRequest = {
    scopes: ["User.Read"]
  };
