This is a Next.js project bootstrapped with create-next-app
.
This project uses TinaCMS and a custom middleware that allows for a multi-domain architecture.
The purpose of this repository is to host the product pages for SSW's custom software.
-
Copy
.env.example
to.env
-
Install Dependencies
yarn install
Note for Windows: Remove TINA_PUBLIC_IS_LOCAL=true
from package.json
, only keeping the tinacms
command.
- Run the development server:
yarn dev
-
Open http://localhost:3000 with your browser to see the result.
-
You can start editing the page by modifying
app/page.tsx
. The page auto-updates as you edit the file.
Note: We temporarily disabled the Visual Editing feature due to this issue. To enable it, you can uncomment the
ui
section intina/collectionSchema/pages.tsx
.
-
Add project configuration to the
NEXT_PUBLIC_PRODUCT_LIST
environment variable in Vercel. For example,{"product": "YakShaver", "domain": "www.yakshaver.ai"}
-
Add custom domain to the Vercel. Then follow the instructions to add the configuration to your domain provider.
Context: Our file structure within our app router looks like
|- app
| |- page.tsx
| |- [product]
| |- [filename]
| |- page.tsx
When the user serves the site a respective domain (i.e think www.YakShaver.ai), it will try to find a respective product mapping from the NEXT_PUBLIC_PRODUCT_LIST
. If it successfully finds a product, it will fill the [product] dynamic mapping with the product value found from the NEXT_PUBLIC_PRODUCT_LIST
. Then when it comes to serving data, our page.tsx
will use relativePath: ${product}/home.json
using the specific product it found related to the domain.
This also means we have to set up the file structure for where we store our content. This is how we've organised our content
structure;
|- content
|- blogs
|- footer
... other TinaCMS collections
|- pages
|- Product1
|- home.json
|- Product2
|- home.json
Note in this instance Product1 and Product2 are just the product names such like YakShaver or TimePro
We've documented how we use this middleware for our own sites and clients - Do you know how to use single codebase for multiple domains with TinaCMS and Next.js?