UNPKG

@_lan/web-libs

Version:

<div align="center"> <img src="./public/favicon.svg" width="160" /> <h1>SoybeanAdmin AntDesign</h1> <span>中文 | <a href="./README.en_US.md">English</a></span> </div>

10 lines (5 loc) 375 B
import { createLocalforage, createStorage } from '@sa/utils'; const storagePrefix = import.meta.env.VITE_STORAGE_PREFIX || ''; export const localStg = createStorage<StorageType.Local>('local', storagePrefix); export const sessionStg = createStorage<StorageType.Session>('session', storagePrefix); export const localforage = createLocalforage<StorageType.Local>('local');