feat: update

This commit is contained in:
2025-11-05 17:24:55 +08:00
parent 61252cdf36
commit ce324c9bb5
42 changed files with 2078 additions and 448 deletions

19
metro.config.js Normal file
View File

@@ -0,0 +1,19 @@
const { getDefaultConfig } = require('expo/metro-config');
/** @type {import('expo/metro-config').MetroConfig} */
const config = getDefaultConfig(__dirname);
// 自定义 Metro 配置
config.resolver = {
...config.resolver,
// 可以在这里添加自定义解析规则
};
// 开发服务器配置
config.server = {
...config.server,
// Metro 服务器端口(默认 8081
port: 8081,
};
module.exports = config;