为什么在Expo上创建项目时没有创建babel.config.js?

问题描述 投票:0回答:1

请告诉我为什么在创建项目(npx create-expo-app@latest --template,空白)时不创建文件 babel.config.js?因此,在终端中出现了我找不到的警告(全部在屏幕截图上)。[在此处输入图像描述](https://i.sstatic.net/Cb32B51r.png)

我尝试了 -npx expo custom 命令,但它根本不生成任何建议的文件

android react-native expo babeljs
1个回答
0
投票

如果您的项目需要自定义 Babel 配置,您需要按照以下步骤在项目中创建 babel.config.js 文件:

导航到项目的根目录,在终端中运行以下命令:

npx expo customize

该命令提示生成不同的配置文件。选择 babel.config.js。

参考:https://docs.expo.dev/versions/latest/config/babel/

© www.soinside.com 2019 - 2024. All rights reserved.