mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-24 18:25:41 +03:00
c2e6d732c4
Expecting bugs!
17 lines
307 B
JavaScript
17 lines
307 B
JavaScript
const config = {
|
|
locales: ['en', 'pseudo-LOCALE'],
|
|
pseudoLocale: 'pseudo-LOCALE',
|
|
fallbackLocales: {
|
|
default: 'en',
|
|
},
|
|
catalogs: [
|
|
{
|
|
path: '<rootDir>/src/locales/{locale}',
|
|
include: ['src'],
|
|
},
|
|
],
|
|
compileNamespace: 'es',
|
|
orderBy: 'origin',
|
|
};
|
|
|
|
export default config;
|