aymericzip

intlayer-astro

Integrates Intlayer internationalization with Astro applications. Use when the user asks to "setup Astro i18n", use "getIntlayer" in Astro components, or manage server-side content in Astro.

aymericzip 4 Updated 3mo ago

Resources

2
GitHub

Install

npx skillscat add aymericzip/intlayer-skills/intlayer-astro

Install via the SkillsCat registry.

SKILL.md

Intlayer Astro Usage

Setup

Server-side (Astro Components)

---
import { getIntlayer } from "astro-intlayer";
const content = await getIntlayer("my-dictionary-key");
---
<h1>{content.title}</h1>

Astro Documentation

References