strapi-layout-plugin 1.0.16 → 1.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "strapi-layout-plugin",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "Strapi layout engine plugin for Sitecore-like routing",
5
5
  "strapi": {
6
6
  "name": "strapi-layout-plugin",
@@ -291,9 +291,9 @@ module.exports = ({ strapi }) => ({
291
291
  fields: finalFields,
292
292
  seo: page.seo || globalLayout?.defaultSeo || null,
293
293
  placeholders: {
294
- header: globalLayout?.header || [],
295
- main: sections || [],
296
- footer: globalLayout?.footer || []
294
+ 'headless-header': globalLayout?.header || [],
295
+ 'headless-main': sections || [],
296
+ 'headless-footer': globalLayout?.footer || []
297
297
  }
298
298
  },
299
299
  },