From 859d880c7bc784d05a3b2cf077c5008fb58487a3 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Wed, 14 Jan 2026 18:11:13 +0000
Subject: [PATCH 1/3] Initial plan
From 90aab2fe836f7bb37d6b959122854502832466a3 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Wed, 14 Jan 2026 18:15:22 +0000
Subject: [PATCH 2/3] Update studio deployment configuration for
play.objectstack.ai
Co-authored-by: huangyiirene <7665279+huangyiirene@users.noreply.github.com>
---
README.md | 4 ++--
apps/playground/src/App.tsx | 6 ++----
apps/playground/src/pages/Home.tsx | 2 +-
apps/playground/vite.config.ts | 2 +-
docs/guide/studio.md | 2 +-
docs/index.md | 4 ++--
6 files changed, 9 insertions(+), 11 deletions(-)
diff --git a/README.md b/README.md
index 996d0bc33..c9001c7c6 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@
[](https://reactjs.org/)
[](https://tailwindcss.com/)
-[**Documentation**](https://www.objectui.org) | [**Quick Start**](#quick-start) | [**Examples**](#examples) | [**Studio**](https://www.objectui.org/studio/)
+[**Documentation**](https://www.objectui.org) | [**Quick Start**](#quick-start) | [**Examples**](#examples) | [**Studio**](https://play.objectstack.ai)
@@ -159,7 +159,7 @@ export default App
Explore our interactive drag-and-drop designer:
-🚀 [**Launch Object UI Studio**](https://www.objectui.org/studio/) - Design visually, export JSON instantly.
+🚀 [**Launch Object UI Studio**](https://play.objectstack.ai) - Design visually, export JSON instantly.
## 📦 Packages
diff --git a/apps/playground/src/App.tsx b/apps/playground/src/App.tsx
index d9d93da86..61d543189 100644
--- a/apps/playground/src/App.tsx
+++ b/apps/playground/src/App.tsx
@@ -1,4 +1,4 @@
-import { BrowserRouter as Router, Routes, Route, Navigate } from 'react-router-dom';
+import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
import { Home } from './pages/Home';
import { Studio } from './pages/Studio';
import '@object-ui/components';
@@ -17,9 +17,7 @@ export default function App() {
✨ Experience Object UI Studio
Explore our interactive visual editor with drag-and-drop design, live preview, and instant JSON export. Perfect for prototyping and learning!
- + 🚀 Launch Studio From 8c8beabe07beede52f429abf5d95995657a29180 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 14 Jan 2026 18:17:09 +0000 Subject: [PATCH 3/3] Remove studio build from deploy-docs workflow since it's deployed separately via Vercel Co-authored-by: huangyiirene <7665279+huangyiirene@users.noreply.github.com> --- .github/workflows/deploy-docs.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index ba18509b8..9c7153c1c 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -6,7 +6,6 @@ on: - main paths: - 'docs/**' - - 'apps/playground/**' - 'packages/**' - '.github/workflows/deploy-docs.yml' workflow_dispatch: @@ -58,16 +57,6 @@ jobs: - name: Build documentation run: pnpm docs:build - - name: Build Studio (Playground) - run: pnpm --filter @apps/playground... build - env: - NODE_ENV: production - - - name: Copy Studio to docs dist - run: | - mkdir -p docs/.vitepress/dist/studio - cp -r apps/playground/dist/* docs/.vitepress/dist/studio/ - - name: Setup Pages uses: actions/configure-pages@v4