fix(mobile): move baseUrl config to experiments.baseUrl and filter static assets in express wildcard handler

This commit is contained in:
Plena Finance Dev
2026-07-09 11:55:31 +05:30
parent 9c7c576c99
commit 65fdc108a8
2 changed files with 11 additions and 3 deletions

View File

@@ -23,8 +23,7 @@
"web": {
"bundler": "metro",
"output": "single",
"favicon": "./assets/images/favicon.png",
"baseUrl": "/mobile"
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
@@ -32,7 +31,8 @@
"expo-web-browser"
],
"experiments": {
"typedRoutes": true
"typedRoutes": true,
"baseUrl": "/mobile"
}
}
}