RattenheimRechner/i18next-parser.config.js

10 lines
292 B
JavaScript
Raw Permalink Normal View History

2024-07-30 18:02:37 +00:00
module.exports = {
defaultNamespace: 'translation',
lexers: {
js: ['JsxLexer'], // we're writing jsx inside .js files
default: ['JavascriptLexer'],
},
locales: ['en', 'de'],
output: 'public/lang/$LOCALE.json',
input: [ 'src/*.js', 'public/*.html', ],
}