Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
molvqingtai committed Oct 29, 2024
2 parents e4d0a93 + bd07bdc commit 41591e8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/constants/config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { version } from '@/../package.json'
// https://www.webfx.com/tools/emoji-cheat-sheet/

export const EMOJI_LIST = [
Expand Down Expand Up @@ -185,12 +186,12 @@ export const BREAKPOINTS = {

export const MESSAGE_MAX_LENGTH = 500 as const

export const STORAGE_NAME = 'WEB_CHAT' as const

export const MESSAGE_LIST_STORAGE_KEY = 'WEB_CHAT_MESSAGE_LIST' as const
export const STORAGE_NAME = `WEB_CHAT_${version}` as const

export const USER_INFO_STORAGE_KEY = 'WEB_CHAT_USER_INFO' as const

export const MESSAGE_LIST_STORAGE_KEY = 'WEB_CHAT_MESSAGE_LIST' as const

export const APP_STATUS_STORAGE_KEY = 'WEB_CHAT_APP_STATUS' as const
/**
* In chrome storage.sync, each key-value pair supports a maximum storage of 8kb
Expand Down

0 comments on commit 41591e8

Please sign in to comment.