我正在使用Expo构建一个React Native应用程序。在我的app.json
中,有一个键:
"assetBundlePatterns": ["**/*"],
我知道this key expects a file path是它的价值。但是"**/*"
是什么意思?我的assets/
文件夹与app.json
处于同一级别,并且其中有三个文件夹,分别为animations/
,images/
和fonts/
。这些价值会覆盖他们吗?
答案 0 :(得分:1)
通常,此**/*
表示某些脚本会考虑所有文件夹和所有子文件夹。
此问题解答可能会帮助您:
Q/A how-to-load-all-files-in-a-directory-using-webpack-without-require-statements
还
Q/A specifying-a-complete-sub-directory-in-webpack-2-entry
通常由webpack等使用。