1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Second commit

This commit is contained in:
Zhiyuan Zheng
2020-10-23 09:22:17 +02:00
parent 9b8df9316f
commit 83f6039ade
26 changed files with 639 additions and 259 deletions

View File

@@ -1,6 +1,16 @@
module.exports = function(api) {
api.cache(true);
module.exports = function (api) {
api.cache(true)
return {
presets: ['babel-preset-expo'],
};
};
plugins: [
[
'module-resolver',
{
alias: {
src: './src'
}
}
]
]
}
}