我正在使用Expo构建一个React Native应用程序。在我的app.json
中,作为键:
"assetBundlePatterns": ["**/*"],
我知道此密钥期望文件路径是其值。但是"**/*"
是什么意思?我的assets/
文件夹的级别与app.json
相同,其中有三个称为animations/
,images/
和fonts/
的文件夹。它们会被该值所覆盖吗?
通常,此 **/*
表示所有文件夹和所有子文件夹均由某些脚本考虑。
也许此Q/A会帮助您:
q/a how-to-load-all-fliles in-a-directory-in-directory-und in-webpack-without-require-require-statement
也
q/a指定 - a-complete-sub-sub-directory-in-webpack-2-Entry
WebPack等使用的大多数usalyy