SEO & Meta
Static meta
const routes: Routes = [
{
path: 'with-user',
component: PostsIndexComponent,
data: compose(
instructions({
'entities': reset(),
'entities.posts': [
deactivate(),
getMany({ params: { _page: '1', _limit: '5' } }),
populate({
idPath: 'userId',
statePath: 'entities.users',
}),
],
}),
staticMeta({
title: 'Posts with user',
description: 'Look at posts composed by users.',
}),
),
]Active meta
Last updated