You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
444 B
17 lines
444 B
2 months ago
|
module.exports = function (api) {
|
||
|
api.cache(true);
|
||
|
return {
|
||
|
presets: ['babel-preset-expo'],
|
||
|
plugins: [
|
||
|
[
|
||
|
'@hancleee/babel-plugin-react-native-pxtodp',
|
||
|
{
|
||
|
designWidth: 430, // 设计稿宽度
|
||
|
designHeight: 932, // 设计稿高度
|
||
|
exclude: /node_modules/, // 排除 node_modules 目录
|
||
|
include: /src|app/, // 只处理 src 和 app 目录
|
||
|
},
|
||
|
],
|
||
|
],
|
||
|
};
|
||
|
};
|