From ca2c3a93aba3abf9dd6cebf6c8a83e6ab4562f1c Mon Sep 17 00:00:00 2001 From: Maxime Pauvert Date: Sun, 23 Nov 2025 18:27:45 +0100 Subject: [PATCH] Remove development mode section from README Removed section on experimental development mode in Nuxt Studio. --- README.md | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/README.md b/README.md index 4dd8990..13ae830 100644 --- a/README.md +++ b/README.md @@ -130,29 +130,6 @@ export default defineNuxtConfig({ }) ``` -## Development Mode - -Nuxt Studio includes an **experimental** development mode that enables real-time file system synchronization: - -> You must setup a local GitHub OAuth App to use this feature (pointing to `http://localhost:3000` as callback URL). - -```ts -export default defineNuxtConfig({ - studio: { - development: { - sync: true // Enable development mode - } - } -}) -``` - -When enabled, Nuxt Studio will: - -- ✅ Write changes directly to your local `content/` directory -- ✅ Write media changes to your local `public/` directory -- ❌ Listen for file system changes and update the editor -- ❌ Commit changes to your repository (use your classical workflow instead) - ## Contributing You must clone the repository and create a local GitHub OAuth App (pointing to `http://localhost:3000` as callback URL).