You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey there! First off I just loved this library and I have been using it more and more with my upcoming projects. When using it with Next.js I faced this one problem
ReferenceError: Can't find variable: sessionStorage
at <anonymous> (webpack-internal:///(ssr)/./src/lib/stores/key.store.ts:20:41)
at recoverKeyFromSessionStorage (webpack-internal:///(ssr)/./src/lib/stores/key.store.ts:19:44)
at new KeyStore (webpack-internal:///(ssr)/./src/lib/stores/key.store.ts:13:42)
at <anonymous> (webpack-internal:///(ssr)/./src/lib/stores/key.store.ts:111:18)
at eval (null)
at (ssr)/./src/lib/stores/key.store.ts (.next/server/app/dashboard/page.js:432:1)
at __webpack_require__ (.next/server/webpack-runtime.js:33:33)
at <anonymous> (webpack-internal:///(ssr)/./src/components/vault-credentials.tsx:7:98)
at eval (null)
at (ssr)/./src/components/vault-credentials.tsx (.next/server/app/dashboard/page.js:366:1)
at __webpack_require__ (.next/server/webpack-runtime.js:33:33)
at <anonymous> (webpack-internal:///(ssr)/./src/components/vault-item-dialog.tsx:10:95)
at eval (null)
at (ssr)/./src/components/vault-item-dialog.tsx (.next/server/app/dashboard/page.js:399:1)
at __webpack_require__ (.next/server/webpack-runtime.js:33:33)
at <anonymous> (webpack-internal:///(ssr)/./src/components/vault-item-cards.tsx:20:95)
at eval (null)
at (ssr)/./src/components/vault-item-cards.tsx (.next/server/app/dashboard/page.js:388:1)
at __webpack_require__ (.next/server/webpack-runtime.js:33:33)
at <anonymous> (webpack-internal:///(ssr)/./src/components/vault-dashboard.tsx:8:94)
at eval (null)
at (ssr)/./src/components/vault-dashboard.tsx (.next/server/app/dashboard/page.js:377:1)
at __webpack_require__ (.next/server/webpack-runtime.js:33:33)
I was wondering if there is an SSR-safe way to access localStorage and/or sessionStorage or similar window properties
Hey there! First off I just loved this library and I have been using it more and more with my upcoming projects. When using it with Next.js I faced this one problem
I was wondering if there is an SSR-safe way to access
localStorage
and/orsessionStorage
or similarwindow
propertiesMy current code/implementation
The text was updated successfully, but these errors were encountered: