Skip to content

Latest commit

 

History

History

README.md

General Translation

Documentation · Report Bug

gt-sanity

General Translation plugin for Sanity Studio v3.

Installation

npm install gt-sanity

Quick Start

import { defineConfig } from 'sanity';
import { gtPlugin } from 'gt-sanity';

export default defineConfig({
  plugins: [
    gtPlugin({
      sourceLocale: 'en',
      locales: ['es', 'fr'],
    }),
  ],
});

See the full documentation for guides and API reference.