When deploying to Vercel, preview deployment URLs are dynamically generated. This breaks Live Preview within those deployments because there is no mechanism by which we can detect and set that URL within Payload. Although Vercel provides various environment variables at our disposal, they provide no concrete identifier for exactly _which_ URL is being currently previewed (you an access the same deployment from a number of different URLs). The fix is to support _relative_ live preview URLs, that way Payload can prepend the application's top-level domain dynamically at render-time in order to create a fully qualified URL. So when you visit a Vercel preview deployment, for example, that deployment's unique URL is used to load the iframe of the preview window, instead of the application's root/production domain. Note: this does not fix multi-tenancy single-domain setups, as those still require a static top-level domain for each tenant.
64 lines
1.3 KiB
TypeScript
64 lines
1.3 KiB
TypeScript
import type { Page } from '../payload-types.js'
|
|
|
|
import { postsSlug } from '../shared.js'
|
|
|
|
export const postsPage: Partial<Page> = {
|
|
title: 'Posts',
|
|
slug: 'posts',
|
|
meta: {
|
|
title: 'Payload Website Template',
|
|
description: 'An open-source website built with Payload and Next.js.',
|
|
image: '{{IMAGE}}',
|
|
},
|
|
hero: {
|
|
type: 'lowImpact',
|
|
richText: [
|
|
{
|
|
type: 'h1',
|
|
children: [
|
|
{
|
|
text: 'All posts',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: 'p',
|
|
children: [
|
|
{
|
|
text: 'This is an example of live preview on a page. You can edit this page in the admin panel and see the changes reflected here.',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
media: undefined,
|
|
},
|
|
layout: [
|
|
{
|
|
blockName: 'Archive Block',
|
|
blockType: 'archive',
|
|
introContent: [
|
|
{
|
|
type: 'h4',
|
|
children: [
|
|
{
|
|
text: 'All posts',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: 'p',
|
|
children: [
|
|
{
|
|
text: 'This is a custom layout building block. You can edit this block in the admin panel and see the changes reflected here.',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
populateBy: 'collection',
|
|
relationTo: postsSlug,
|
|
limit: 10,
|
|
categories: [],
|
|
},
|
|
],
|
|
}
|