I'm building authorization in a Sveltekit app.
Currently, each +page.server.ts load() function calls a 3rd party API to determine what pages a user has access to. I'd like to store this list of pages for the duration of a session, so the API is only being called once when a user firsts visits the site.
Where, if anywhere, can I store this information securely and make it available to +page.server.ts load functions?