Translate any Nuxt 3 app without @nuxtjs/i18n
One line in nuxt.config.ts enables automatic translation across all pages, layouts, and components. Works with Nuxt Content, server-side rendering, and hybrid rendering modes.
What gets translated
Setup guide
- 1
Create a Lingvit project
Sign up at app.lingvit.com and create a project. Add your production domain and select your target languages.
- 2
Add the script via nuxt.config.ts
Inject the Lingvit script through your Nuxt config — no manual template edits required:
// nuxt.config.ts export default defineNuxtConfig({ app: { head: { script: [ { src: 'https://cdn.lingvit.com/widget.bundle.js?v=1', async: true }, ], }, }, }) - 3
Select languages and deploy
Choose target languages in the Lingvit dashboard and deploy your app. SSR-rendered HTML and client-side hydration updates are both translated automatically.
Need the full platform overview? Web Apps & SPAs use case guide →