Created
December 5, 2025 15:54
-
-
Save thepatrickniyo/c1cab5cec43041f662a231b9293835b8 to your computer and use it in GitHub Desktop.
codeway-sanity.config.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import {defineConfig} from 'sanity' | |
| import {structureTool} from 'sanity/structure' | |
| import {schemaTypes} from './src/schemaTypes' | |
| const SANITY_PROJECT_ID = ''; | |
| const SANITY_DATASET = ''; | |
| export default defineConfig({ | |
| basePath: '/admin', | |
| name: 'default', | |
| title: 'codeway', | |
| projectId: SANITY_PROJECT_ID, | |
| dataset: SANITY_DATASET, | |
| plugins: [structureTool()], | |
| schema: { | |
| types: schemaTypes, | |
| }, | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment