11 lines
231 B
JavaScript
11 lines
231 B
JavaScript
/** @type {import('@lingui/conf').LinguiConfig} */
|
|
module.exports = {
|
|
locales: ['en', 'hi'],
|
|
catalogs: [
|
|
{
|
|
path: '<rootDir>/src/locale/locales/{locale}/messages',
|
|
include: ['src'],
|
|
},
|
|
],
|
|
format: 'po',
|
|
}
|