mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-21 21:50:49 +02:00
703 B
703 B
Default Language 🌍
How to change the default language
- Open this file
client\src\store\language.js
- Modify the "default" in the lang variable with your ISO 3166 Alpha-2 code :
Example: from English as default
import { atom } from 'recoil';
const lang = atom({
key: 'lang',
default: 'en',
});
export default { lang };
to Italian as default
import { atom } from 'recoil';
const lang = atom({
key: 'lang',
default: 'it',
});
export default { lang };