Hi @julian
Thank you for your reply. What I comprehended from your post above is to do something like this ...
staticDirs: {
"jstree-static": "static/lib/jstree/dist/themes/proton"
}
This setting will map the route
localhost/plugin/nodebb-plugin-map/jstree-static
TO
.../nodebb/node_modules/nodebb-plugin-map/static/lib/jstree/dist/themes/proton
In the style.css, modify all the occurrences of the image files like this:
background:url(throbber.gif)
TO
background:url(./plugin/nodebb-plugin-map/jstree-static/throbber.gif)
I made a total of 46 modification in the style.css which I actually did not want to because this is a third-party stylesheet and when they come with a new version, I will have to make the modifications again.
And, this attempt to solve the problem didn't succeed. I might have taken the wrong direction. If yes, could you pl. modify my configuration code and make it work?
Probably, the last alternative is to copy the image files in the build/public folder which means at the same level as the resulting stylesheet.css file.
Thanks