I have a deep nested folder structure for my assets (like assets/gfx/
, assets/gfx/contact/
, assets/gfx/mainview/
, assets/gfx/mainview/content/
etc.) containing fonts, js-files, png, jpg aso. How do i bundle this complete strcucture with my app? I tried something like assets/**/_:Bundle_**
, assets/
/_._:Bundle
, assets//
.png:Bundle
. Nothing worked. Does anyone have a solution for me?
Hi,
You can bundle everything in assets
recursively:
"Includes": [
"assets/**:Bundle"
]