
Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag storeYes, the documentation is still valid for Studio v3! The article you're looking at covers List Previews configuration, which works the same way in Studio v3 as it did in v2.
Based on your edit mentioning you "just needed to rename the file," it sounds like you may have been dealing with the Studio v3 project structure changes. In Studio v3, schema files are typically organized in a schemaTypes folder and imported into your configuration differently than in v2.
Here's what likely happened:
Studio v2 structure:
schemas/schema.js as an index fileStudio v3 structure:
src/schemaTypes/ (or schemaTypes/)sanity.config.ts or sanity.config.jsexport default or named exports)The preview configuration itself hasn't changed - you still use the same preview object with select and prepare functions as shown in the documentation. For example:
export default {
name: 'movie',
type: 'document',
fields: [...],
preview: {
select: {
title: 'title',
subtitle: 'releaseDate'
}
}
}If you're working with Studio v3, make sure you're using the modern project structure with proper ES module exports. The preview functionality documented in that article works identically in both versions!
Sanity is the developer-first content operating system that gives you complete control. Schema-as-code, GROQ queries, and real-time APIs mean no more workarounds or waiting for deployments. Free to start, scale as you grow.
Content operations
Content backend


The only platform powering content operations
By Industry


Tecovas strengthens their customer connections
Build and Share

Grab your gear: The official Sanity swag store
Read Grab your gear: The official Sanity swag store