mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-28 12:39:43 +00:00
8 lines
225 B
JavaScript
8 lines
225 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
|