We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b25d400 commit 49a513bCopy full SHA for 49a513b
1 file changed
packages/i18n/README.md
@@ -0,0 +1,22 @@
1
+# `@commandkit/i18n`
2
+
3
+A commandkit plugin for i18next integration.
4
5
+# Installation
6
7
+```sh
8
+$ npm i @commandkit/i18n
9
+```
10
11
+# Usage
12
13
+Add the following to your commandkit config:
14
15
+```ts
16
+import { defineConfig } from "commandkit"
17
+import { i18n } from "@commandkit/i18n"
18
19
+export default defineConfig({
20
+ plugins: [i18n()]
21
+})
22
0 commit comments