mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 15:36:58 +00:00
12 lines
315 B
JavaScript
12 lines
315 B
JavaScript
import { generatePreviewKey } from "@agility/nextjs/node"
|
|
|
|
export default async (req, res) => {
|
|
|
|
//TODO: Only generate the preview link if you are already in Preview!
|
|
//how can I check if i'm in preview mode already?
|
|
|
|
const previewKey = generatePreviewKey();
|
|
|
|
//Return a valid preview key
|
|
res.end(previewKey)
|
|
} |