gettext.config.cjs 196 B

12345678910
  1. const i18n = require('./i18n.json')
  2. module.exports = {
  3. input: {
  4. include: ['**/*.js', '**/*.ts', '**/*.vue', '**/*.jsx', '**/*.tsx'],
  5. },
  6. output: {
  7. locales: Object.keys(i18n),
  8. },
  9. }