返回 Skill 列表
extension
分类: 开发与工程无需 API Key

intlayer-usage

提供了在任何项目中使用Intlayer的一般指导方针。当用户询问如何“开始使用Intlayer”、“声明内容文件”或理解国际化“项目结构”时使用。

person作者: jakexiaohubgithub

Intlayer Usage

To use Intlayer effectively:

  1. Retrieve Locales: Check intlayer.config.{ts,js,json,json5,jsonc,cjs,mjs}, .intlayerrc to see the configured locales.

  2. Declare Content: We recommend creating one content declaration file per component, located alongside the component file. This keeps translations close to the code.

  3. Consume Content: Use the provided hooks and functions to access your content.

    Common Packages:

    • intlayer: Core package for content declaration and utility functions.
    • react-intlayer: React components and hooks (e.g., useIntlayer).
    • vite-intlayer: Vite plugin for integration.
  4. CLI Commands: Useful commands for managing your content:

    • npx intlayer build: Build the dictionaries from your content declarations.

References