Web applications manifest.json如何忽略其下的特定文件夹';什么范围?

Web applications manifest.json如何忽略其下的特定文件夹';什么范围?,web-applications,manifest.json,Web Applications,Manifest.json,我已经将manifest.json的“start URL”和“scope”设置为站点的根目录 "start_url": "./index.html?addToHome=true", "scope": "./", 但我希望它忽略位于该根目录下的特定文件夹。 有办法吗 _ website-directory |_ /other-app/ (how to ignore this?) |_ index.js |_ index.html |_ manifest.json 我不认为它们是排除特定文件

我已经将manifest.json的“start URL”和“scope”设置为站点的根目录

"start_url": "./index.html?addToHome=true",
"scope": "./",
但我希望它忽略位于该根目录下的特定文件夹。 有办法吗

_ website-directory
|_ /other-app/   (how to ignore this?)
|_ index.js
|_ index.html
|_ manifest.json

我不认为它们是排除特定文件夹的一种方式,但您可以提供相对路径,例如
“scope”:“/myapp/”