⚠️Exporting global state in Spellkit and SSR can lead to data leakage between server requests.
💡The server-side execution of code in script tags exposes the client-side state globally on the server.
🔐To prevent data leakage, handle global state differently and avoid exporting it in SSR contexts.
🔄Consider using the Spel Context API to initialize and access global state within your application.
🚀Revisit your global state implementation to ensure data security and prevent unintended data exposure.