I have developed a web application and i am using browser local storage to save user data(public info). My problem is i have created 3 web application inside same domain with different site name,Eg:
https://www.domain.com/site1 - Dev
https://www.domain.com/site2 - Test
https://www.domain.com/site3 - Staging
My problem is when i tried to open these 3 website in different tab from same browser, i want to keep local storage data unique for each site(i;e; site1, site2, site3).
I know local storage data is stored against per domain, but is there any work around or approach to make it unique per site running on same domain.
Any help is appreciated.