7.1 KiB
Next.js Commerce
Note: Looking for Next.js Commerce v1? View the release notes.
A Next.js 13 and App Router-ready ecommerce template, built with Shopify, featuring:
- Next.js App Router
- Optimized for SEO using Next.js's Metadata
- React Server Components (RSCs) and Suspense
- Route Handlers for mutations
- Edge functions
- New fetching and caching paradigms
- Dynamic OG images
- Styling with Tailwind CSS
- Checkout and payments with Shopify
- Automatic light/dark mode based on system settings
We will be shortly updating the demo at demo.vercel.store with this new version.
Running Locally
- Install Vercel CLI:
npm i -g vercel
- Link local instance with Vercel and GitHub accounts (creates
.vercel
directory):vercel link
- Download your environment variables:
vercel env pull .env.local
pnpm install
pnpm dev
Your app should now be running on localhost:3000.
How to configure your Shopify store for Next.js Commerce
Add Shopify domain to an environment variable
Create a SHOPIFY_STORE_DOMAIN
environment variable and use your Shopify domain as the the value (ie. acme-store.myshopify.com
).
Note: Do not include the
https://
.
Accessing the Shopify Storefront API
Next.js Commerce utilizes Shopify's Storefront API to create unique customer experiences. The API offers a full range of commerce options making it possible for customers to control products, collections, menus, pages, cart, checkout, and more.
In order to use the Shopify's Storefront API, you need to install the Headless app in your Shopify store.
Once installed, you'll need to create a SHOPIFY_STOREFRONT_ACCESS_TOKEN
environment variable and use the public access token as the value
Note: Shopify does offer a Node.js Storefront API SDK. We use the Storefront API via GraphQL directly instead of the Node.js SDK so we have more control over fetching and caching.
View detailed visual walkthrough
- Navigate to
https://YOUR_SHOPIFY_SUBDOMAIN.myshopify.com/admin/settings/apps
. - Click the green
Shopify App Store
button. - Search for
Headless
and click on theHeadless
app. - Click the black
Add app
button. - Click the green
Add sales channel
button. - Click the green
Create storefront
button. - Copy and paste the public access token and assign it to a
SHOPIFY_STOREFRONT_ACCESS_TOKEN
environment variable. - If you ever need to reference the public access token again, you can navigate to
https://YOUR_SHOPIFY_SUBDOMAIN.myshopify.com/admin/headless_storefronts
.
Install a headless theme
When using a headless Shopify setup, you normally don't want customers to access any of the theme pages except for checkout. However, you can't totally disable the theme and a lot of links will still point to the theme (e.g. links in emails, order details, plugins, checkout, etc.).
To enable a seamless flow between your headless site and Shopify, you can install the Shopify Headless Theme.
Follow the installation instructions and configure the theme with your headless site's values.
View detailed visual walkthrough
- Download Shopify Headless Theme.
- Navigate to
https://YOUR_SHOPIFY_SUBDOMAIN.myshopify.com/admin/themes
. - Click
Add theme
, thenUpload zip file
. - Select the downloaded zip file from above, and click the green
Upload file
button. - Click
Customize
. - Click
Theme settings
(ie. the paintbrush icon), expand theSTOREFRONT
section, enter your headless store domain, click the grayPublish
button. - Confirm the theme change by clicking the green
Save and publish
button. - The headless theme should now be your current active theme.
Branding & Design
Since you're creating a headless Shopify store, you'll be in full control of your brand and design. However, there are still a few aspects we're leaving within Shopify's control.
- Checkout
- Emails
- Order status
- Order history
- Favicon (for any Shopify controlled pages)
You can use Shopify's admin to customize these pages to match your brand and design.
View detailed visual walkthrough
Checkout, order status, and order history
- Navigate to
https://YOUR_SHOPIFY_SUBDOMAIN.myshopify.com/admin/settings/checkout
. - Click the green
Customize
button. - Click
Branding
(ie. the paintbrush icon) and customize your brand. Please note, there are three steps / pages to the checkout flow. Use the dropdown to change pages and adjust branding as needed on each page. ClickSave
when you are done. - Navigate to
https://YOUR_SHOPIFY_SUBDOMAIN.myshopify.com/admin/settings/branding
. - Customize settings to match your brand.
Emails
- Navigate to
https://YOUR_SHOPIFY_SUBDOMAIN.myshopify.com/admin/settings/email_settings
. - Customize settings to match your brand.
Favicon
Configure webhooks for on-demand incremental static regeneration (ISR)
Coming soon.