Skip to content

Commit 92ff44b

Browse files
committed
fix merge conflict. Merge in main
2 parents 13ea172 + 3439349 commit 92ff44b

File tree

4 files changed

+581
-3
lines changed

4 files changed

+581
-3
lines changed

.prettierignore

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1-
.github/**
1+
.github/**
2+
3+
# Generated files
4+
package-lock.json
5+
**/package-lock.json
6+
yarn.lock
7+
**/yarn.lock
8+
pnpm-lock.yaml
9+
**/pnpm-lock.yaml
10+
11+
# Build outputs
12+
dist/
13+
build/
14+
out/
15+
.next/
16+
17+
# Other generated files
18+
*.min.js
19+
*.min.css

frontend/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NEXT_PUBLIC_SANITY_PROJECT_ID="<paste your project here>" # Required - The ID of your Sanity project
22
NEXT_PUBLIC_SANITY_DATASET="production" # Required - The dataset of your Sanity project
3-
NEXT_PUBLIC_SANITY_API_VERSION="2024-10-28" # Optional - The API version provided to the Sanity Client
3+
NEXT_PUBLIC_SANITY_API_VERSION="2025-09-25" # Optional - The API version provided to the Sanity Client
44
NEXT_PUBLIC_SANITY_STUDIO_URL="" #Optional, defaults to http://localhost:3333
55
SANITY_API_READ_TOKEN="<paste your token here>" # Required - The read token for your Sanity project

frontend/sanity/lib/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const projectId = assertValue(
2424
/**
2525
* see https://www.sanity.io/docs/api-versioning for how versioning works
2626
*/
27-
export const apiVersion = process.env.NEXT_PUBLIC_SANITY_API_VERSION || '2024-10-28'
27+
export const apiVersion = process.env.NEXT_PUBLIC_SANITY_API_VERSION || '2025-09-25'
2828

2929
/**
3030
* Used to configure edit intent links, for Presentation Mode, as well as to configure where the Studio is mounted in the router.

0 commit comments

Comments
 (0)