Skip to content

Commit

Permalink
fix: wrong locales file extension (#1578)
Browse files Browse the repository at this point in the history
  • Loading branch information
luthfi-hh authored Oct 23, 2022
1 parent 5cf9146 commit 1ee240a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/content/30.guide/8.lazy-load-translations.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ export default defineNuxtConfig({
locales: [
{
code: 'en',
file: 'en-US.js'
file: 'en-US.json'
},
{
code: 'es',
file: 'es-ES.js'
file: 'es-ES.json'
},
{
code: 'fr',
file: 'fr-FR.js'
file: 'fr-FR.json'
}
],
lazy: true,
Expand Down

0 comments on commit 1ee240a

Please sign in to comment.