i have custom handlers:
export const homeHandler = {
name: 'home-handlers',
priority: 10,
pattern: '/homepage',
func: async ({ route, state, libraries }) => {
const homeResponse = await libraries.source.api.get({
endpoint: 'pages',
params: { slug: '/homepage', _embed: true, head_tags: true },
});
await libraries.source.populate({
response: homeResponse,
state,
});
/*....*/
},
};
index.js
/*....*/
libraries: {
source: {
handlers: [homeHandler],
},
html2react: {
processors: [image],
},
},
/*....*/
if i remove this handler meta tags on page appear.
The problem is that if I do not remove the handler, it does not show meta tags