Skip to content

Commit a96cd53

Browse files
authoredMar 10, 2025··
chore(cli): update core app template for multiple configurations (#8874)
1 parent ec20de7 commit a96cd53

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed
 

‎packages/@sanity/cli/templates/core-app/src/App.tsx

+7-5
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,17 @@ import {ExampleComponent} from './ExampleComponent'
44
import './App.css'
55

66
export function App() {
7-
const sanityConfig: SanityConfig = {
8-
auth: {
9-
authScope: 'global'
7+
// apps can access many different projects or other sources of data
8+
const sanityConfigs: SanityConfig[] = [
9+
{
10+
projectId: 'project-id',
11+
dataset: 'dataset-name',
1012
}
11-
}
13+
]
1214

1315
return (
1416
<div className="app-container">
15-
<SanityApp sanityConfig={sanityConfig}>
17+
<SanityApp sanityConfigs={sanityConfigs}>
1618
{/* add your own components here! */}
1719
<ExampleComponent />
1820
</SanityApp>

‎packages/@sanity/cli/templates/core-app/src/ExampleComponent.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function ExampleComponent() {
1313
<pre>{`import {YourComponent} from './YourComponent'
1414
1515
// Then use it in your JSX
16-
<SanityApp sanityConfig={sanityConfig}>
16+
<SanityApp sanityConfigs={sanityConfigs}>
1717
<YourComponent />
1818
</SanityApp>`}</pre>
1919
</div>

0 commit comments

Comments
 (0)