[Vuejs]-Multiple PWAs on the same host but different subfolders – same origin behavior

0👍

Using the local storage, you are in charge of detecting which PWA is trying to reach the data. If you really need to use the same subdomain for both, you must also use different keys to identify the items in the local storage. The same applies to sessions.

The best solution would be to use different subdomains for the same application. Your browser should do the rest and store the information separately.

Leave a comment