@vibedeckx/linux-x64 0.1.17 → 0.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/process-manager.d.ts +1 -1
- package/dist/process-manager.js +102 -42
- package/dist/ui/404/index.html +1 -1
- package/dist/ui/404.html +1 -1
- package/dist/ui/__next.__PAGE__.txt +1 -1
- package/dist/ui/__next._full.txt +1 -1
- package/dist/ui/__next._head.txt +1 -1
- package/dist/ui/__next._index.txt +1 -1
- package/dist/ui/__next._tree.txt +1 -1
- package/dist/ui/_not-found/__next._full.txt +1 -1
- package/dist/ui/_not-found/__next._head.txt +1 -1
- package/dist/ui/_not-found/__next._index.txt +1 -1
- package/dist/ui/_not-found/__next._not-found.__PAGE__.txt +1 -1
- package/dist/ui/_not-found/__next._not-found.txt +1 -1
- package/dist/ui/_not-found/__next._tree.txt +1 -1
- package/dist/ui/_not-found/index.html +1 -1
- package/dist/ui/_not-found/index.txt +1 -1
- package/dist/ui/index.html +1 -1
- package/dist/ui/index.txt +1 -1
- package/node_modules/node-pty/lib/conpty_console_list_agent.js +10 -1
- package/node_modules/node-pty/lib/unixTerminal.js +6 -3
- package/node_modules/node-pty/lib/utils.js +1 -1
- package/node_modules/node-pty/lib/windowsPtyAgent.js +62 -95
- package/node_modules/node-pty/lib/windowsTerminal.js +4 -2
- package/node_modules/node-pty/package.json +6 -5
- package/node_modules/node-pty/prebuilds/linux-x64/pty.node +0 -0
- package/package.json +2 -2
- package/node_modules/node-pty/build/Release/pty.node +0 -0
- package/node_modules/node-pty/build/binding.Makefile +0 -6
- package/node_modules/node-pty/build/pty.target.mk +0 -168
- package/node_modules/node-pty/lib/eventEmitter2.test.js +0 -30
- package/node_modules/node-pty/lib/terminal.test.js +0 -139
- package/node_modules/node-pty/lib/testUtils.test.js +0 -28
- package/node_modules/node-pty/lib/unixTerminal.test.js +0 -351
- package/node_modules/node-pty/lib/windowsPtyAgent.test.js +0 -90
- package/node_modules/node-pty/lib/windowsTerminal.test.js +0 -219
- /package/dist/ui/_next/static/{KwSMuRKWgTp_quB8AMAmD → VUA3uJYddmpvYUPcharb_}/_buildManifest.js +0 -0
- /package/dist/ui/_next/static/{KwSMuRKWgTp_quB8AMAmD → VUA3uJYddmpvYUPcharb_}/_clientMiddlewareManifest.json +0 -0
- /package/dist/ui/_next/static/{KwSMuRKWgTp_quB8AMAmD → VUA3uJYddmpvYUPcharb_}/_ssgManifest.js +0 -0
|
@@ -88,7 +88,7 @@ export declare class ProcessManager {
|
|
|
88
88
|
*/
|
|
89
89
|
private stopByPid;
|
|
90
90
|
/**
|
|
91
|
-
* Handle input from the client (for PTY processes)
|
|
91
|
+
* Handle input from the client (for PTY or terminal processes)
|
|
92
92
|
*/
|
|
93
93
|
handleInput(processId: string, message: InputMessage): boolean;
|
|
94
94
|
/**
|
package/dist/process-manager.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { spawn, execFileSync } from "child_process";
|
|
2
|
+
import { existsSync } from "fs";
|
|
2
3
|
import path from "path";
|
|
3
4
|
import * as pty from "node-pty";
|
|
4
5
|
const LOG_RETENTION_MS = 5 * 60 * 1000; // 5 minutes
|
|
@@ -132,6 +133,9 @@ export class ProcessManager {
|
|
|
132
133
|
const processId = crypto.randomUUID();
|
|
133
134
|
this.terminalCounter++;
|
|
134
135
|
const name = `Terminal ${this.terminalCounter}`;
|
|
136
|
+
if (!existsSync(cwd)) {
|
|
137
|
+
throw new Error(`Working directory does not exist: ${cwd}`);
|
|
138
|
+
}
|
|
135
139
|
let shell;
|
|
136
140
|
if (process.platform === "win32") {
|
|
137
141
|
shell = "powershell.exe";
|
|
@@ -143,24 +147,36 @@ export class ProcessManager {
|
|
|
143
147
|
}
|
|
144
148
|
}
|
|
145
149
|
console.log(`[ProcessManager] Starting terminal ${processId} (${name}) in ${cwd}, shell=${shell}`);
|
|
146
|
-
|
|
150
|
+
const ptyEnv = { ...process.env, TERM: "xterm-256color", FORCE_COLOR: "1" };
|
|
151
|
+
// Try PTY first (proper interactive terminal). If node-pty's native module
|
|
152
|
+
// fails (e.g. posix_spawnp broken on macOS ARM64), fall back to a regular
|
|
153
|
+
// child process which still gives a usable shell, just without full PTY
|
|
154
|
+
// features like raw-mode input.
|
|
155
|
+
let usePty = true;
|
|
156
|
+
let proc;
|
|
147
157
|
try {
|
|
148
|
-
|
|
158
|
+
proc = pty.spawn(shell, [], {
|
|
149
159
|
name: "xterm-256color",
|
|
150
160
|
cols: 80,
|
|
151
161
|
rows: 24,
|
|
152
162
|
cwd,
|
|
153
|
-
env:
|
|
163
|
+
env: ptyEnv,
|
|
154
164
|
});
|
|
155
|
-
console.log(`[ProcessManager] Terminal ${processId} spawned
|
|
165
|
+
console.log(`[ProcessManager] Terminal ${processId} spawned with PTY, PID: ${proc.pid}`);
|
|
156
166
|
}
|
|
157
|
-
catch (
|
|
158
|
-
console.
|
|
159
|
-
|
|
167
|
+
catch (ptyErr) {
|
|
168
|
+
console.warn(`[ProcessManager] PTY spawn failed for terminal ${processId}, falling back to regular process: ${ptyErr}`);
|
|
169
|
+
usePty = false;
|
|
170
|
+
proc = spawn(shell, ["-i"], {
|
|
171
|
+
cwd,
|
|
172
|
+
stdio: ["pipe", "pipe", "pipe"],
|
|
173
|
+
env: ptyEnv,
|
|
174
|
+
});
|
|
175
|
+
console.log(`[ProcessManager] Terminal ${processId} spawned with regular process, PID: ${proc.pid}`);
|
|
160
176
|
}
|
|
161
177
|
const runningProcess = {
|
|
162
|
-
process:
|
|
163
|
-
isPty:
|
|
178
|
+
process: proc,
|
|
179
|
+
isPty: usePty,
|
|
164
180
|
isTerminal: true,
|
|
165
181
|
name,
|
|
166
182
|
logs: [],
|
|
@@ -172,27 +188,56 @@ export class ProcessManager {
|
|
|
172
188
|
skipDb: true,
|
|
173
189
|
};
|
|
174
190
|
this.processes.set(processId, runningProcess);
|
|
175
|
-
|
|
176
|
-
const
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
runningProcess.logs
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
}
|
|
195
|
-
}
|
|
191
|
+
if (usePty) {
|
|
192
|
+
const ptyProc = proc;
|
|
193
|
+
ptyProc.onData((data) => {
|
|
194
|
+
const msg = { type: "pty", data };
|
|
195
|
+
runningProcess.logs.push(msg);
|
|
196
|
+
if (runningProcess.logs.length > TERMINAL_MAX_LOG_ENTRIES) {
|
|
197
|
+
runningProcess.logs = runningProcess.logs.slice(-TERMINAL_MAX_LOG_ENTRIES);
|
|
198
|
+
}
|
|
199
|
+
this.broadcast(processId, msg);
|
|
200
|
+
});
|
|
201
|
+
ptyProc.onExit(({ exitCode }) => {
|
|
202
|
+
const code = exitCode ?? 0;
|
|
203
|
+
console.log(`[ProcessManager] Terminal ${processId} exited with code ${code}`);
|
|
204
|
+
const msg = { type: "finished", exitCode: code };
|
|
205
|
+
runningProcess.logs.push(msg);
|
|
206
|
+
this.broadcast(processId, msg);
|
|
207
|
+
setTimeout(() => {
|
|
208
|
+
this.processes.delete(processId);
|
|
209
|
+
}, LOG_RETENTION_MS);
|
|
210
|
+
});
|
|
211
|
+
}
|
|
212
|
+
else {
|
|
213
|
+
const childProc = proc;
|
|
214
|
+
childProc.stdout?.on("data", (data) => {
|
|
215
|
+
const msg = { type: "pty", data: data.toString() };
|
|
216
|
+
runningProcess.logs.push(msg);
|
|
217
|
+
if (runningProcess.logs.length > TERMINAL_MAX_LOG_ENTRIES) {
|
|
218
|
+
runningProcess.logs = runningProcess.logs.slice(-TERMINAL_MAX_LOG_ENTRIES);
|
|
219
|
+
}
|
|
220
|
+
this.broadcast(processId, msg);
|
|
221
|
+
});
|
|
222
|
+
childProc.stderr?.on("data", (data) => {
|
|
223
|
+
const msg = { type: "pty", data: data.toString() };
|
|
224
|
+
runningProcess.logs.push(msg);
|
|
225
|
+
if (runningProcess.logs.length > TERMINAL_MAX_LOG_ENTRIES) {
|
|
226
|
+
runningProcess.logs = runningProcess.logs.slice(-TERMINAL_MAX_LOG_ENTRIES);
|
|
227
|
+
}
|
|
228
|
+
this.broadcast(processId, msg);
|
|
229
|
+
});
|
|
230
|
+
childProc.on("close", (code) => {
|
|
231
|
+
const exitCode = code ?? 0;
|
|
232
|
+
console.log(`[ProcessManager] Terminal ${processId} exited with code ${exitCode}`);
|
|
233
|
+
const msg = { type: "finished", exitCode };
|
|
234
|
+
runningProcess.logs.push(msg);
|
|
235
|
+
this.broadcast(processId, msg);
|
|
236
|
+
setTimeout(() => {
|
|
237
|
+
this.processes.delete(processId);
|
|
238
|
+
}, LOG_RETENTION_MS);
|
|
239
|
+
});
|
|
240
|
+
}
|
|
196
241
|
return { id: processId, name };
|
|
197
242
|
}
|
|
198
243
|
/**
|
|
@@ -604,21 +649,32 @@ export class ProcessManager {
|
|
|
604
649
|
return killed;
|
|
605
650
|
}
|
|
606
651
|
/**
|
|
607
|
-
* Handle input from the client (for PTY processes)
|
|
652
|
+
* Handle input from the client (for PTY or terminal processes)
|
|
608
653
|
*/
|
|
609
654
|
handleInput(processId, message) {
|
|
610
655
|
const runningProcess = this.processes.get(processId);
|
|
611
|
-
if (!runningProcess
|
|
656
|
+
if (!runningProcess) {
|
|
612
657
|
return false;
|
|
613
658
|
}
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
659
|
+
if (runningProcess.isPty) {
|
|
660
|
+
const ptyProcess = runningProcess.process;
|
|
661
|
+
if (message.type === "input") {
|
|
662
|
+
ptyProcess.write(message.data);
|
|
663
|
+
return true;
|
|
664
|
+
}
|
|
665
|
+
else if (message.type === "resize") {
|
|
666
|
+
ptyProcess.resize(message.cols, message.rows);
|
|
667
|
+
return true;
|
|
668
|
+
}
|
|
618
669
|
}
|
|
619
|
-
else if (
|
|
620
|
-
|
|
621
|
-
|
|
670
|
+
else if (runningProcess.isTerminal) {
|
|
671
|
+
// Non-PTY terminal fallback: write to stdin
|
|
672
|
+
const childProcess = runningProcess.process;
|
|
673
|
+
if (message.type === "input") {
|
|
674
|
+
childProcess.stdin?.write(message.data);
|
|
675
|
+
return true;
|
|
676
|
+
}
|
|
677
|
+
// resize is not supported for non-PTY processes
|
|
622
678
|
}
|
|
623
679
|
return false;
|
|
624
680
|
}
|
|
@@ -631,15 +687,19 @@ export class ProcessManager {
|
|
|
631
687
|
if (!runningProcess) {
|
|
632
688
|
throw new Error(`Terminal ${processId} not found`);
|
|
633
689
|
}
|
|
634
|
-
if (!runningProcess.
|
|
690
|
+
if (!runningProcess.isTerminal) {
|
|
635
691
|
throw new Error(`Process ${processId} is not an interactive terminal`);
|
|
636
692
|
}
|
|
637
693
|
const lastLog = runningProcess.logs[runningProcess.logs.length - 1];
|
|
638
694
|
if (lastLog?.type === "finished") {
|
|
639
695
|
throw new Error(`Terminal ${processId} has already exited`);
|
|
640
696
|
}
|
|
641
|
-
|
|
642
|
-
|
|
697
|
+
if (runningProcess.isPty) {
|
|
698
|
+
runningProcess.process.write(`${command}\n`);
|
|
699
|
+
}
|
|
700
|
+
else {
|
|
701
|
+
runningProcess.process.stdin?.write(`${command}\n`);
|
|
702
|
+
}
|
|
643
703
|
}
|
|
644
704
|
/**
|
|
645
705
|
* Get recent output lines from a terminal's log buffer.
|
package/dist/ui/404/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--VUA3uJYddmpvYUPcharb_--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/2473c16c0c2f6b5f.css" data-precedence="next"/><link rel="stylesheet" href="/_next/static/chunks/e23d46e94edec1d3.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/790dcc1e825d2504.js"/><script src="/_next/static/chunks/782a93ec4348b666.js" async=""></script><script src="/_next/static/chunks/d6651bb78c09d144.js" async=""></script><script src="/_next/static/chunks/turbopack-a5ce95b200d58f7a.js" async=""></script><script src="/_next/static/chunks/020d675d21be28d4.js" async=""></script><script src="/_next/static/chunks/dae86e12c7741e6c.js" async=""></script><script src="/_next/static/chunks/cb15e0c2ff49cf52.js" async=""></script><script src="/_next/static/chunks/a7c40c289b5e2384.js" async=""></script><script src="/_next/static/chunks/4f9c934abf34ceb9.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>VibeDeckX - AI Autopilot Cockpit</title><meta name="description" content="The autopilot cockpit for building apps with AI"/><link rel="icon" href="/favicon.ico?favicon.0b3bf435.ico" sizes="256x256" type="image/x-icon"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased"><div hidden=""><!--$--><!--/$--></div><div class="h-screen flex items-center justify-center"><div class="animate-spin h-8 w-8 border-2 border-primary border-t-transparent rounded-full"></div></div><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section><script src="/_next/static/chunks/790dcc1e825d2504.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[573751,[\"/_next/static/chunks/020d675d21be28d4.js\",\"/_next/static/chunks/dae86e12c7741e6c.js\",\"/_next/static/chunks/cb15e0c2ff49cf52.js\"],\"ClientProviders\"]\n3:I[752055,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"default\"]\n4:I[933484,[\"/_next/static/chunks/020d675d21be28d4.js\",\"/_next/static/chunks/dae86e12c7741e6c.js\",\"/_next/static/chunks/cb15e0c2ff49cf52.js\",\"/_next/static/chunks/4f9c934abf34ceb9.js\"],\"default\"]\n5:I[106547,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"default\"]\n6:I[754219,[\"/_next/static/chunks/020d675d21be28d4.js\",\"/_next/static/chunks/dae86e12c7741e6c.js\",\"/_next/static/chunks/cb15e0c2ff49cf52.js\"],\"Toaster\"]\n7:I[617906,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"OutletBoundary\"]\n8:\"$Sreact.suspense\"\na:I[617906,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"ViewportBoundary\"]\nc:I[617906,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"MetadataBoundary\"]\ne:I[799116,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"default\"]\n:HL[\"/_next/static/chunks/2473c16c0c2f6b5f.css\",\"style\"]\n:HL[\"/_next/static/chunks/e23d46e94edec1d3.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"VUA3uJYddmpvYUPcharb_\",\"c\":[\"\",\"_not-found\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/2473c16c0c2f6b5f.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/e23d46e94edec1d3.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/020d675d21be28d4.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/dae86e12c7741e6c.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/cb15e0c2ff49cf52.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased\",\"children\":[[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$4\",\"errorStyles\":[],\"errorScripts\":[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/4f9c934abf34ceb9.js\",\"async\":true}]],\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}],[\"$\",\"$L6\",null,{}]]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:0:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:0:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$8\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@9\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$La\",null,{\"children\":\"$Lb\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lc\",null,{\"children\":[\"$\",\"$8\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Ld\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$e\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"b:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"f:I[535138,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"IconMark\"]\n9:null\nd:[[\"$\",\"title\",\"0\",{\"children\":\"VibeDeckX - AI Autopilot Cockpit\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"The autopilot cockpit for building apps with AI\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$Lf\",\"3\",{}]]\n"])</script></body></html>
|
package/dist/ui/404.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--VUA3uJYddmpvYUPcharb_--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/2473c16c0c2f6b5f.css" data-precedence="next"/><link rel="stylesheet" href="/_next/static/chunks/e23d46e94edec1d3.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/790dcc1e825d2504.js"/><script src="/_next/static/chunks/782a93ec4348b666.js" async=""></script><script src="/_next/static/chunks/d6651bb78c09d144.js" async=""></script><script src="/_next/static/chunks/turbopack-a5ce95b200d58f7a.js" async=""></script><script src="/_next/static/chunks/020d675d21be28d4.js" async=""></script><script src="/_next/static/chunks/dae86e12c7741e6c.js" async=""></script><script src="/_next/static/chunks/cb15e0c2ff49cf52.js" async=""></script><script src="/_next/static/chunks/a7c40c289b5e2384.js" async=""></script><script src="/_next/static/chunks/4f9c934abf34ceb9.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>VibeDeckX - AI Autopilot Cockpit</title><meta name="description" content="The autopilot cockpit for building apps with AI"/><link rel="icon" href="/favicon.ico?favicon.0b3bf435.ico" sizes="256x256" type="image/x-icon"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased"><div hidden=""><!--$--><!--/$--></div><div class="h-screen flex items-center justify-center"><div class="animate-spin h-8 w-8 border-2 border-primary border-t-transparent rounded-full"></div></div><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section><script src="/_next/static/chunks/790dcc1e825d2504.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[573751,[\"/_next/static/chunks/020d675d21be28d4.js\",\"/_next/static/chunks/dae86e12c7741e6c.js\",\"/_next/static/chunks/cb15e0c2ff49cf52.js\"],\"ClientProviders\"]\n3:I[752055,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"default\"]\n4:I[933484,[\"/_next/static/chunks/020d675d21be28d4.js\",\"/_next/static/chunks/dae86e12c7741e6c.js\",\"/_next/static/chunks/cb15e0c2ff49cf52.js\",\"/_next/static/chunks/4f9c934abf34ceb9.js\"],\"default\"]\n5:I[106547,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"default\"]\n6:I[754219,[\"/_next/static/chunks/020d675d21be28d4.js\",\"/_next/static/chunks/dae86e12c7741e6c.js\",\"/_next/static/chunks/cb15e0c2ff49cf52.js\"],\"Toaster\"]\n7:I[617906,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"OutletBoundary\"]\n8:\"$Sreact.suspense\"\na:I[617906,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"ViewportBoundary\"]\nc:I[617906,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"MetadataBoundary\"]\ne:I[799116,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"default\"]\n:HL[\"/_next/static/chunks/2473c16c0c2f6b5f.css\",\"style\"]\n:HL[\"/_next/static/chunks/e23d46e94edec1d3.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"VUA3uJYddmpvYUPcharb_\",\"c\":[\"\",\"_not-found\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/2473c16c0c2f6b5f.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/e23d46e94edec1d3.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/020d675d21be28d4.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/dae86e12c7741e6c.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/cb15e0c2ff49cf52.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased\",\"children\":[[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$4\",\"errorStyles\":[],\"errorScripts\":[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/4f9c934abf34ceb9.js\",\"async\":true}]],\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}],[\"$\",\"$L6\",null,{}]]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:0:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:0:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$8\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@9\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$La\",null,{\"children\":\"$Lb\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lc\",null,{\"children\":[\"$\",\"$8\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Ld\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$e\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"b:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"f:I[535138,[\"/_next/static/chunks/a7c40c289b5e2384.js\"],\"IconMark\"]\n9:null\nd:[[\"$\",\"title\",\"0\",{\"children\":\"VibeDeckX - AI Autopilot Cockpit\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"The autopilot cockpit for building apps with AI\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$Lf\",\"3\",{}]]\n"])</script></body></html>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
6:I[617906,["/_next/static/chunks/a7c40c289b5e2384.js"],"OutletBoundary"]
|
|
5
5
|
7:"$Sreact.suspense"
|
|
6
6
|
:HL["/_next/static/chunks/54d5670f5fa2abbe.css","style"]
|
|
7
|
-
0:{"buildId":"
|
|
7
|
+
0:{"buildId":"VUA3uJYddmpvYUPcharb_","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/54d5670f5fa2abbe.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/d36807add3e11d59.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/af8114430894d79e.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/558f73c16b7ff14f.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/869e15bfcbb5dbd1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/2ba1d2b55b82f4da.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
|
8
8
|
4:{}
|
|
9
9
|
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
|
10
10
|
8:null
|
package/dist/ui/__next._full.txt
CHANGED
|
@@ -16,7 +16,7 @@ e:I[617906,["/_next/static/chunks/a7c40c289b5e2384.js"],"ViewportBoundary"]
|
|
|
16
16
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
17
17
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
18
18
|
:HL["/_next/static/chunks/54d5670f5fa2abbe.css","style"]
|
|
19
|
-
0:{"P":null,"b":"
|
|
19
|
+
0:{"P":null,"b":"VUA3uJYddmpvYUPcharb_","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/2473c16c0c2f6b5f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/e23d46e94edec1d3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/020d675d21be28d4.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/dae86e12c7741e6c.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/cb15e0c2ff49cf52.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":[["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$4","errorStyles":[],"errorScripts":[["$","script","script-0",{"src":"/_next/static/chunks/4f9c934abf34ceb9.js","async":true}]],"template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L6",null,{}]]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L7",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@9","$@a"]}}],[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/54d5670f5fa2abbe.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/d36807add3e11d59.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/af8114430894d79e.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/558f73c16b7ff14f.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/869e15bfcbb5dbd1.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/2ba1d2b55b82f4da.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$c",null,{"name":"Next.MetadataOutlet","children":"$@d"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Le",null,{"children":"$Lf"}],["$","div",null,{"hidden":true,"children":["$","$L10",null,{"children":["$","$c",null,{"name":"Next.Metadata","children":"$L11"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$12",[]],"S":true}
|
|
20
20
|
9:{}
|
|
21
21
|
a:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
|
|
22
22
|
f:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
package/dist/ui/__next._head.txt
CHANGED
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
3:I[617906,["/_next/static/chunks/a7c40c289b5e2384.js"],"MetadataBoundary"]
|
|
4
4
|
4:"$Sreact.suspense"
|
|
5
5
|
5:I[535138,["/_next/static/chunks/a7c40c289b5e2384.js"],"IconMark"]
|
|
6
|
-
0:{"buildId":"
|
|
6
|
+
0:{"buildId":"VUA3uJYddmpvYUPcharb_","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"VibeDeckX - AI Autopilot Cockpit"}],["$","meta","1",{"name":"description","content":"The autopilot cockpit for building apps with AI"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
6:I[754219,["/_next/static/chunks/020d675d21be28d4.js","/_next/static/chunks/dae86e12c7741e6c.js","/_next/static/chunks/cb15e0c2ff49cf52.js"],"Toaster"]
|
|
7
7
|
:HL["/_next/static/chunks/2473c16c0c2f6b5f.css","style"]
|
|
8
8
|
:HL["/_next/static/chunks/e23d46e94edec1d3.css","style"]
|
|
9
|
-
0:{"buildId":"
|
|
9
|
+
0:{"buildId":"VUA3uJYddmpvYUPcharb_","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/2473c16c0c2f6b5f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/e23d46e94edec1d3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/020d675d21be28d4.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/dae86e12c7741e6c.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/cb15e0c2ff49cf52.js","async":true}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":[["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$4","errorStyles":[],"errorScripts":[["$","script","script-0",{"src":"/_next/static/chunks/4f9c934abf34ceb9.js","async":true}]],"template":["$","$L5",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}],["$","$L6",null,{}]]}]}]]}],"loading":null,"isPartial":false}
|
package/dist/ui/__next._tree.txt
CHANGED
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
4
4
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
5
5
|
:HL["/_next/static/chunks/54d5670f5fa2abbe.css","style"]
|
|
6
|
-
0:{"buildId":"
|
|
6
|
+
0:{"buildId":"VUA3uJYddmpvYUPcharb_","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
|
@@ -11,7 +11,7 @@ c:I[617906,["/_next/static/chunks/a7c40c289b5e2384.js"],"MetadataBoundary"]
|
|
|
11
11
|
e:I[799116,["/_next/static/chunks/a7c40c289b5e2384.js"],"default"]
|
|
12
12
|
:HL["/_next/static/chunks/2473c16c0c2f6b5f.css","style"]
|
|
13
13
|
:HL["/_next/static/chunks/e23d46e94edec1d3.css","style"]
|
|
14
|
-
0:{"P":null,"b":"
|
|
14
|
+
0:{"P":null,"b":"VUA3uJYddmpvYUPcharb_","c":["","_not-found",""],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/2473c16c0c2f6b5f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/e23d46e94edec1d3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/020d675d21be28d4.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/dae86e12c7741e6c.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/cb15e0c2ff49cf52.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":[["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$4","errorStyles":[],"errorScripts":[["$","script","script-0",{"src":"/_next/static/chunks/4f9c934abf34ceb9.js","async":true}]],"template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L6",null,{}]]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:0:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:0:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L7",null,{"children":["$","$8",null,{"name":"Next.MetadataOutlet","children":"$@9"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$La",null,{"children":"$Lb"}],["$","div",null,{"hidden":true,"children":["$","$Lc",null,{"children":["$","$8",null,{"name":"Next.Metadata","children":"$Ld"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$e","$undefined"],"S":true}
|
|
15
15
|
b:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
16
16
|
f:I[535138,["/_next/static/chunks/a7c40c289b5e2384.js"],"IconMark"]
|
|
17
17
|
9:null
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
3:I[617906,["/_next/static/chunks/a7c40c289b5e2384.js"],"MetadataBoundary"]
|
|
4
4
|
4:"$Sreact.suspense"
|
|
5
5
|
5:I[535138,["/_next/static/chunks/a7c40c289b5e2384.js"],"IconMark"]
|
|
6
|
-
0:{"buildId":"
|
|
6
|
+
0:{"buildId":"VUA3uJYddmpvYUPcharb_","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"VibeDeckX - AI Autopilot Cockpit"}],["$","meta","1",{"name":"description","content":"The autopilot cockpit for building apps with AI"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
6:I[754219,["/_next/static/chunks/020d675d21be28d4.js","/_next/static/chunks/dae86e12c7741e6c.js","/_next/static/chunks/cb15e0c2ff49cf52.js"],"Toaster"]
|
|
7
7
|
:HL["/_next/static/chunks/2473c16c0c2f6b5f.css","style"]
|
|
8
8
|
:HL["/_next/static/chunks/e23d46e94edec1d3.css","style"]
|
|
9
|
-
0:{"buildId":"
|
|
9
|
+
0:{"buildId":"VUA3uJYddmpvYUPcharb_","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/2473c16c0c2f6b5f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/e23d46e94edec1d3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/020d675d21be28d4.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/dae86e12c7741e6c.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/cb15e0c2ff49cf52.js","async":true}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":[["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$4","errorStyles":[],"errorScripts":[["$","script","script-0",{"src":"/_next/static/chunks/4f9c934abf34ceb9.js","async":true}]],"template":["$","$L5",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}],["$","$L6",null,{}]]}]}]]}],"loading":null,"isPartial":false}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
2
|
2:I[617906,["/_next/static/chunks/a7c40c289b5e2384.js"],"OutletBoundary"]
|
|
3
3
|
3:"$Sreact.suspense"
|
|
4
|
-
0:{"buildId":"
|
|
4
|
+
0:{"buildId":"VUA3uJYddmpvYUPcharb_","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
|
|
5
5
|
4:null
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
2
|
2:I[752055,["/_next/static/chunks/a7c40c289b5e2384.js"],"default"]
|
|
3
3
|
3:I[106547,["/_next/static/chunks/a7c40c289b5e2384.js"],"default"]
|
|
4
|
-
0:{"buildId":"
|
|
4
|
+
0:{"buildId":"VUA3uJYddmpvYUPcharb_","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
:HL["/_next/static/chunks/2473c16c0c2f6b5f.css","style"]
|
|
2
2
|
:HL["/_next/static/chunks/e23d46e94edec1d3.css","style"]
|
|
3
|
-
0:{"buildId":"
|
|
3
|
+
0:{"buildId":"VUA3uJYddmpvYUPcharb_","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|