Adding local .js files to my app

I have a follow-up question on this topic. I would like to make an offline portable version of the golden-layout based panel. The problem with the default approach is that the static assets aren’t included:

from bokeh.resources import INLINE
my_panel.save('index.html', resources=INLINE)

Is there a way to include static assets in combination with .save() ?

p.s. It is nice if these assets are inlined in the html, but this isn’t that important as it is also
fine to share a directory in stead of just an html file, or use an inline tool afterwards.