solve camera off focus, load user histories

This commit is contained in:
heyethereum
2024-07-22 00:41:05 +08:00
parent a6c5fc8f05
commit 220fa2dfd4
15 changed files with 329 additions and 137 deletions

10
app.config.js Normal file
View File

@@ -0,0 +1,10 @@
import 'dotenv/config';
export default ({ config }) => {
return {
...config,
extra: {
API_BASE_URL: process.env.BASE_URL,
},
};
};