WellNuo/metro.config.js
Sergei b740762609 Update main project + add WellNuoLite
- WellNuoLite: облегчённая версия для модерации Apple
- Обновлены chat и voice tabs
- Добавлены TTS модели и сервисы
- Обновлены зависимости
2025-12-26 19:19:00 -08:00

21 lines
469 B
JavaScript

// Learn more https://docs.expo.io/guides/customizing-metro
const { getDefaultConfig } = require('expo/metro-config');
/** @type {import('expo/metro-config').MetroConfig} */
const config = getDefaultConfig(__dirname);
// Add support for TTS model files
config.resolver.assetExts.push(
// ONNX model files
'onnx',
// Text files for tokens
'txt',
// Binary files that might be in espeak-ng-data
'bin',
'dat',
'ldb',
'dic'
);
module.exports = config;