Skip to content

Commit

Permalink
🐛 fix: i18n undefined error in CF Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
kms0219kms authored Oct 16, 2023
1 parent 3788fdf commit 07bfd1d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,12 @@ export default {
locales: [
{ code: 'ko', iso: 'ko-KR', file: 'ko/index.js' },
{ code: 'en', iso: 'en-US', file: 'en/index.js' },
{ code: 'en', iso: 'en-GB', file: 'en/index.js' },
{ code: 'ja', iso: 'ja-JP', file: 'ja/index.js' },
{ code: 'vi', iso: 'vi-VN', file: 'vi/index.js' },
],
langDir: 'locales/',
lazy: true,
lazy: false,
defaultLocale: 'ko',
strategy: 'prefix_and_default',
vuex: {
Expand Down

0 comments on commit 07bfd1d

Please sign in to comment.