14 lines
281 B
TypeScript
14 lines
281 B
TypeScript
|
import {defineCliConfig} from 'sanity/cli'
|
||
|
|
||
|
export default defineCliConfig({
|
||
|
api: {
|
||
|
projectId: '6y6d0u72',
|
||
|
dataset: 'production'
|
||
|
},
|
||
|
/**
|
||
|
* Enable auto-updates for studios.
|
||
|
* Learn more at https://www.sanity.io/docs/cli#auto-updates
|
||
|
*/
|
||
|
autoUpdates: true,
|
||
|
})
|