Preaction CMS v5 Alpha 10
Pre-release
Pre-release
✨ new frontend extension option: allowedReferrers
This will allow you to set allowed URL origins which may send Referer headers (which are blocked by default)
💥 note: existing src/ext/index.js files now need an allowedReferrers (Array) named export
Example (see src/ext/index.template.js):
const allowedReferrers = ['https://example.com']
const blockExtensions = {}
const menuExtensions = {}
export { allowedReferrers, blockExtensions, menuExtensions }