mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-24 23:04:55 +00:00
9 lines
229 B
JavaScript
9 lines
229 B
JavaScript
const { getDefaultConfig } = require('expo/metro-config');
|
|
|
|
const config = getDefaultConfig(__dirname);
|
|
|
|
// Required for react-native-executorch model files
|
|
config.resolver.assetExts.push('pte', 'bin');
|
|
|
|
module.exports = config;
|