Hi, I would really appreciate the ability to chose the values for the manifest that is dynamically constructed by anvil. For example, it could be another tab under Settings or an advanced option in Settings>General.
Right now I am replacing the manifest in the way suggested by @divyeshlakhotia at How to add quick action functionality to installed PWA - #3 by divyeshlakhotia, namely:
<script>
document.querySelectorAll('[rel="manifest"]')[0].remove()
</script>
<link rel="manifest" href="_/theme/manifest.json">
However, using a static manifest with anvil is somewhat problematic when running the app in debug mode because the paths to icons and other assets are different. E.g., instead of /_/theme/images/icon.svg
, when in debug mode the path becomes debug/*token*/_/theme/images/icon.svg
.
I assume this is the reason anvil constructs the manifest dynamically in the first place.
It would be much better if we could specify the manifest values in the settings, which would then by applied to the constructed manifest. Thank you.