A Next.js starter for creating a SaaS Marketing Website with Hygraph
• Demo
- Clone the repository and install project dependencies
npx degit Hygraph/reference-marketing-website#main reference-marketing-website
cd reference-marketing-website
yarn
- Provide your Hygraph project keys
Navigate into your new site’s directory and copy the .env.local.example
file.
cp .env.local.example .env.local
Inside of your newly created .env.local
file, provide values for the variable. These variables can be found in the project settings UI.
HYGRAPH_ENDPOINT=
- Start building!
yarn dev
If you want to enable Next.js Preview Mode you'll need to add the following to your .env
:
GRAPHCMS_TOKEN=
GRAPHCMS_PREVIEW_TOKEN=
GRAPHCMS_PREVIEW_SECRET=
This should be a Permanent Auth Token that is set to fetch content from PUBLISHED content stage by default.
This should be a Permanent Auth Token that is set to fetch content from DRAFT content stage by default.
You'll need to make sure when configuring the Preview URL inside Hygraph that it passes the same secret value you assigned to GRAPHCMS_PREVIEW_SECRET
.
You'll need to update both the Page & Blog Post model to add a Preview URL. The URLs should look like this:
- Page:
https://[your-domain.com]/api/preview?secret=[GRAPHCMS_PREVIEW_SECRET_VALUE_HERE]&slug={slug}
- Blog Post:
https://[your-domain.com]/api/preview?secret=[GRAPHCMS_PREVIEW_SECRET_VALUE_HERE]&slug=blog/{slug}