Open lazarljubenovic opened 2 years ago
Describe the bug
import i18n from './i18next' i18n.t(`foo`) // works runtime, gets extracted i18n.t`foo` // works runtime, doesn't get extracted
Babel configuration:
use: { loader: 'babel-loader', options: { plugins: [ [ 'i18next-extract', { locales: ['en-US', 'sr-Cyrl'], outputPath: 'src/translations/{{locale}}/{{ns}}.json', keyAsDefaultValue: ['en-US'], }, ], ], presets: [ '@babel/preset-react', '@babel/preset-typescript', [ '@babel/preset-env', { targets: { chrome: 94, }, }, ], ], }, },
Describe the bug
Babel configuration: