@tpbradley@ben I was using a src="{{page.resourcesPath}}/… for a script call in the Body End section. I then tried moving the script into the Template area:
We’ve renamed the property to better describe what it’s referring to. The new variable is {{page.projectResourcesPath}} and it’s available in build 0.7.9.
I’m not sure when it happened, but the {{page.resourcesPath}} was broken in a previous build.
You’ll also need to make the page object available to the template using the hooks file. Something like this.
const transformHook = (rw) => {
// Make page object available to the template
rw.setProps({
page: rw.page
});
}
exports.transformHook = transformHook;