The deployed Studio at hooklab.sanity.studio was crashing because it had no access to Vercel env vars. Hardcode projectId and dataset so sanity deploy works standalone. https://claude.ai/code/session_01H2aRGDaKgarPvhay2HxN6Y
9 lines
152 B
TypeScript
9 lines
152 B
TypeScript
import { defineCliConfig } from "sanity/cli";
|
|
|
|
export default defineCliConfig({
|
|
api: {
|
|
projectId: "4r409ts6",
|
|
dataset: "production",
|
|
},
|
|
});
|