Hi, I am looking for a way to make Ghost to load all assets/pages by absolute URL path, so for example, instead of loading /assets/file.js, it would load http://myghostblog.com/assets/file.js.
Does anyone know if this possible to do using a config or something?
Reading through the documentation, the relative loading of assets with the asset helper seems to be intentional: Ghost Handlebars Theme Helpers: asset.
This also makes a lot of sense, imo.
A workaround: instead of “{{asset 'file.js'}}” you could use “{{@site.url}}{{asset 'file.js'}}”