import type { LoaderFunction } from 'remix'; import Page, { loader as pageLoader, meta, links, CatchBoundary, ErrorBoundary, } from './$slug'; export const loader: LoaderFunction = async (data): Promise => { const { params, ...rest } = data; const modified = { ...params, loadIndexPage: 'true' }; return pageLoader({ params: modified, ...rest }); }; export default Page; export { meta, links, CatchBoundary, ErrorBoundary };