Skip to content

Commit

Permalink
Change tina config file to obtain client id and token from env file
Browse files Browse the repository at this point in the history
  • Loading branch information
AngeloThys committed May 12, 2024
1 parent a7e0751 commit aac66f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tina/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export default defineConfig({
branch,

// Get this from tina.io
clientId: "6a39d70b-797f-442e-956b-db8a47bb309f",
clientId: process.env.NEXT_PUBLIC_TINA_CLIENT_ID,
// Get this from tina.io
token: "ad552dcbfd89561f7f9d3e0403f2965eb78d7ad1",
token: process.env.TINA_TOKEN,

build: {
outputFolder: "admin",
Expand Down

0 comments on commit aac66f8

Please sign in to comment.