Initial commit

This commit is contained in:
wuzhenyu
2025-08-27 19:20:10 +08:00
parent 9f5b8552a0
commit 8d7fd34e1a
35 changed files with 3983 additions and 114 deletions

View File

@@ -1,3 +1,17 @@
module.exports = {
presets: ['module:@react-native/babel-preset'],
presets: [
'module:@react-native/babel-preset',
],
plugins: [
[
'module-resolver',
{
root: ['./'],
alias: {
'@': './'
},
},
],
['import', { libraryName: '@ant-design/react-native' }], // 与 Web 平台的区别是不需要设置 style
],
};