Hi, continue with my research i guest i found a new bug on this example:
https://github.com/fusetools/hikr
on the “hikr.Page.ux” i have a Image background like this:
<Image Layer="Background" File="../Assets/background.jpg" StretchMode="UniformToFill" Opacity=".7" />
and work just fine, i want to select the background from the module export so i do this:
<Image Layer="Background" File="{background}" StretchMode="UniformToFill" Opacity=".7" />
And on the JS i have:
module.exports = {
name: name,
back: back,
background: "../Assets/background.jpg"
};
The console return:
LOG: InternalError: ImageSource error: Couldn't open file: ../Assets/background.jpg in Fuse.Resources.FileImageSourceImpl<C:\ProgramData\Uno\Packages\Fuse.Elements\0.35.13\Resources\$.uno:570>
```
```
My .uniproj
{
"RootNamespace":"",
"Packages": [
"Fuse",
"FuseJS"
],
"Includes": [
"*",
"Modules/*.js:Bundle",
"Assets/*.jpg:Bundle"
]
}
```
I don't know if i need to set something different when a variable is set, someone can help me with this?
*FUSE VERSION: 0.25.5*