Products
Products
Video Hosting
Upload and manage your videos in a centralized video library.
Image Hosting
Upload and manage all your images in a centralized library.
Galleries
Choose from 100+templates to showcase your media in style.
Video Messaging
Record, and send personalized video messages.
CincoTube
Create your own community video hub your team, students or fans.
Pages
Create dedicated webpages to share your videos and images.
Live
Create dedicated webpages to share your videos and images.
For Developers
Video API
Build a unique video experience.
DeepUploader
Collect and store user content from anywhere with our file uploader.
Solutions
Solutions
Enterprise
Supercharge your business with secure, internal communication.
Townhall
Webinars
Team Collaboration
Learning & Development
Creative Professionals
Get creative with a built in-suite of editing and marketing tools.
eCommerce
Boost sales with interactive video and easy-embedding.
Townhall
Webinars
Team Collaboration
Learning & Development
eLearning & Training
Host and share course materials in a centralized portal.
Sales & Marketing
Attract, engage and convert with interactive tools and analytics.
"Cincopa helped my Enterprise organization collaborate better through video."
Book a Demo
Resources
Resources
Blog
Learn about the latest industry trends, tips & tricks.
Help Centre
Get access to help articles FAQs, and all things Cincopa.
Partners
Check out our valued list of partners.
Product Updates
Stay up-to-date with our latest greatest features.
Ebooks, Guides & More
Customer Stories
Hear how we've helped businesses succeed.
Boost Campaign Performance Through Video
Discover how to boost your next campaign by using video.
Download Now
Pricing
Watch a Demo
Demo
Login
Start Free Trial
Upgrading Sanity Studio from v2 to v3 is essential as v2 is no longer supported, and all future improvements are exclusive to v3. Sanity Studio v3 introduces a modern developer experience with a Vite-based build system for faster hot reloading, support for React 18, and a new TypeScript-first configuration system. Upgrading from Sanity Studio v2 to v3 means replacing the legacy sanity.json with a modern sanity.config.js , dropping deprecated packages, refactoring part:X imports, and aligning with the new Studio APIs; all while keeping your content and editor workflows unchanged. Sanity V2 to V3 Migration Prerequisites Before starting the upgrade, ensure the following tools and dependencies are ready: Node.js (v16+ recommended) npm or yarn A backup of your current sanity project (just in case!) Step-by-Step Migration Guide Remove Deprecated Sanity Packages Sanity Studio v3 consolidates core functionality under a single package. You’ll need to remove older v2 packages from package.json . Remove : '@sanity/base', '@sanity/core', '@sanity/default-layout', '@sanity/default-login', '@sanity/desk-tool' Run : npm uninstall @sanity/base @sanity/core @sanity/default-layout @sanity/default-login @sanity/desk-tool Install the New sanity Package To run Sanity Studio v3, you need the latest core package. Installing it ensures your project is built on the supported and updated version. Install the latest version of Sanity Studio : This command fetches and installs the most recent v3 release of Sanity Studio. npm install sanity@latest Upgrade React and UI Packages (If Needed) Sanity Studio v3 needs React 18 and the latest @sanity/ui package for full compatibility. Updating these ensures your Studio runs without version conflicts. Make sure your project uses compatible versions. This command installs React 18, React DOM, and the Sanity UI library at versions supported by v3. npm install react@^18.2.0 react-dom@^18.2.0 @sanity/ui@^1 Migrate from sanity.json to sanity.config.js Sanity Studio v3 replaces the sanity.json configuration file with a modern JavaScript-based sanity.config.js . This new format supports TypeScript, better tooling, and direct imports for plugins. Migrating your configuration is essential to make v3 work correctly. Example Conversion : sanity.json (v2) { 'projectId': 'your-project-id', 'dataset': 'production', 'plugins': ['@sanity/desk-tool'], 'schema': { 'types': [...] } } sanity.config.js (v3) In v3, configuration is defined in JavaScript using defineConfig . Plugins are imported directly, and schema types are structured under the schema property. import { defineConfig } from 'sanity' import { deskTool } from 'sanity/desk' export default defineConfig({ projectId: 'your-project-id', dataset: 'production', plugins: [deskTool()], schema: { types: [...], }, }) Replace Legacy part:X Imports Sanity Studio v2 used the legacy parts system to extend or replace internal components. This system has been completely removed in v3. To stay compatible, you must update imports to use the new Studio APIs. ❌ Old (v2) : In v2, custom components were imported with part:X paths. import CustomLogo from 'part:@sanity/base/logo' ✅ New (v3) : In v3, you import directly from the official Studio APIs and register components through provided slots. The exact replacement depends on what you were customizing; refer to the Migration Cheat Sheet for mappings. Update Custom Components If you’ve created custom components for fields, inputs, or views, these must now be passed through the new components property inside the schema. Example : schema: { types: [ defineType({ name: 'article', type: 'document', fields: [ { name: 'title', type: 'string', components: { input: CustomTitleInput, }, }, ], }), ], } Update or Replace Plugins Sanity Studio v3 requires plugins to be updated or replaced with v3-compatible versions. Using outdated plugins may break your Studio or prevent features from working. Check if the Plugins You Use Support Studio v3 : Most official and community plugins have been updated. You can confirm compatibility by browsing the Sanity Exchange . Reinstall Compatible Versions via NPM : Once you’ve identified v3-ready plugins, reinstall them in your project to ensure they work with the updated Studio.