Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update usage.mdx #28

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/content/docs/getting-started/usage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This integration is incompatible with the [native Astro internationalization fea
This package has a few required options:

```js title="astro.config.mjs" {7,8}
import { definConfig } from "astro/config"
import { defineConfig } from "astro/config"
import i18n from "@astrolicious/i18n"

export default defineConfig({
Expand Down Expand Up @@ -97,7 +97,7 @@ Using utilities from `i18n:astro` on the client is opt-in. You need 2 things:
2. Enable client features in the integration configuration:

```js title="astro.config.mjs" ins={9-13}
import { definConfig } from "astro/config"
import { defineConfig } from "astro/config"
import i18n from "@astrolicious/i18n"

export default defineConfig({
Expand Down