- WellNuoLite: облегчённая версия для модерации Apple - Обновлены chat и voice tabs - Добавлены TTS модели и сервисы - Обновлены зависимости
21 lines
469 B
JavaScript
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;
|