mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-26 20:12:38 +08:00
- Update biome.jsonc to use natural sort order for keys - Clean up i18next.config.ts formatting and remove trailing newline
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import { defineConfig } from 'i18next-cli'
|
|
|
|
export default defineConfig({
|
|
locales: ['en-us', 'zh-cn', 'zh-tw'],
|
|
extract: {
|
|
input: 'src/renderer/src/**/*.{ts,tsx}',
|
|
output: 'src/renderer/src/i18n/locales/{{language}}.json'
|
|
}
|
|
})
|