mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-05 16:02:19 +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
|