@vibedeckx/darwin-arm64 0.1.17 → 0.1.20
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 +131 -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/darwin-arm64/pty.node +0 -0
- package/node_modules/node-pty/prebuilds/darwin-arm64/spawn-helper +0 -0
- package/package.json +2 -2
- 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/{yeP8Hh4fEFoXM9i740k4g → tnhfWrpoZk8v3-sUvS5Ag}/_buildManifest.js +0 -0
- /package/dist/ui/_next/static/{yeP8Hh4fEFoXM9i740k4g → tnhfWrpoZk8v3-sUvS5Ag}/_clientMiddlewareManifest.json +0 -0
- /package/dist/ui/_next/static/{yeP8Hh4fEFoXM9i740k4g → tnhfWrpoZk8v3-sUvS5Ag}/_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,8 +1,38 @@
|
|
|
1
1
|
import { spawn, execFileSync } from "child_process";
|
|
2
|
+
import { existsSync, chmodSync, readdirSync, statSync } from "fs";
|
|
2
3
|
import path from "path";
|
|
4
|
+
import { createRequire } from "module";
|
|
3
5
|
import * as pty from "node-pty";
|
|
4
6
|
const LOG_RETENTION_MS = 5 * 60 * 1000; // 5 minutes
|
|
5
7
|
const TERMINAL_MAX_LOG_ENTRIES = 5000;
|
|
8
|
+
/**
|
|
9
|
+
* node-pty on macOS uses a `spawn-helper` binary in prebuilds/.
|
|
10
|
+
* pnpm strips execute bits from tarball entries, so posix_spawn fails
|
|
11
|
+
* with "Permission denied". Fix permissions at startup.
|
|
12
|
+
*/
|
|
13
|
+
function fixNodePtyPermissions() {
|
|
14
|
+
try {
|
|
15
|
+
const require_ = createRequire(import.meta.url);
|
|
16
|
+
const ptyDir = path.dirname(require_.resolve("node-pty/package.json"));
|
|
17
|
+
const prebuildsDir = path.join(ptyDir, "prebuilds");
|
|
18
|
+
if (!existsSync(prebuildsDir))
|
|
19
|
+
return;
|
|
20
|
+
for (const platform of readdirSync(prebuildsDir)) {
|
|
21
|
+
const helper = path.join(prebuildsDir, platform, "spawn-helper");
|
|
22
|
+
if (existsSync(helper)) {
|
|
23
|
+
const mode = statSync(helper).mode;
|
|
24
|
+
if (!(mode & 0o111)) {
|
|
25
|
+
chmodSync(helper, mode | 0o755);
|
|
26
|
+
console.log(`[ProcessManager] Fixed spawn-helper permissions: ${helper}`);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
catch {
|
|
32
|
+
// Non-critical — PTY will fall back to child_process if spawn fails
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
fixNodePtyPermissions();
|
|
6
36
|
export class ProcessManager {
|
|
7
37
|
processes = new Map();
|
|
8
38
|
storage;
|
|
@@ -132,6 +162,9 @@ export class ProcessManager {
|
|
|
132
162
|
const processId = crypto.randomUUID();
|
|
133
163
|
this.terminalCounter++;
|
|
134
164
|
const name = `Terminal ${this.terminalCounter}`;
|
|
165
|
+
if (!existsSync(cwd)) {
|
|
166
|
+
throw new Error(`Working directory does not exist: ${cwd}`);
|
|
167
|
+
}
|
|
135
168
|
let shell;
|
|
136
169
|
if (process.platform === "win32") {
|
|
137
170
|
shell = "powershell.exe";
|
|
@@ -143,24 +176,36 @@ export class ProcessManager {
|
|
|
143
176
|
}
|
|
144
177
|
}
|
|
145
178
|
console.log(`[ProcessManager] Starting terminal ${processId} (${name}) in ${cwd}, shell=${shell}`);
|
|
146
|
-
|
|
179
|
+
const ptyEnv = { ...process.env, TERM: "xterm-256color", FORCE_COLOR: "1" };
|
|
180
|
+
// Try PTY first (proper interactive terminal). If node-pty's native module
|
|
181
|
+
// fails (e.g. posix_spawnp broken on macOS ARM64), fall back to a regular
|
|
182
|
+
// child process which still gives a usable shell, just without full PTY
|
|
183
|
+
// features like raw-mode input.
|
|
184
|
+
let usePty = true;
|
|
185
|
+
let proc;
|
|
147
186
|
try {
|
|
148
|
-
|
|
187
|
+
proc = pty.spawn(shell, [], {
|
|
149
188
|
name: "xterm-256color",
|
|
150
189
|
cols: 80,
|
|
151
190
|
rows: 24,
|
|
152
191
|
cwd,
|
|
153
|
-
env:
|
|
192
|
+
env: ptyEnv,
|
|
154
193
|
});
|
|
155
|
-
console.log(`[ProcessManager] Terminal ${processId} spawned
|
|
194
|
+
console.log(`[ProcessManager] Terminal ${processId} spawned with PTY, PID: ${proc.pid}`);
|
|
156
195
|
}
|
|
157
|
-
catch (
|
|
158
|
-
console.
|
|
159
|
-
|
|
196
|
+
catch (ptyErr) {
|
|
197
|
+
console.warn(`[ProcessManager] PTY spawn failed for terminal ${processId}, falling back to regular process: ${ptyErr}`);
|
|
198
|
+
usePty = false;
|
|
199
|
+
proc = spawn(shell, ["-i"], {
|
|
200
|
+
cwd,
|
|
201
|
+
stdio: ["pipe", "pipe", "pipe"],
|
|
202
|
+
env: ptyEnv,
|
|
203
|
+
});
|
|
204
|
+
console.log(`[ProcessManager] Terminal ${processId} spawned with regular process, PID: ${proc.pid}`);
|
|
160
205
|
}
|
|
161
206
|
const runningProcess = {
|
|
162
|
-
process:
|
|
163
|
-
isPty:
|
|
207
|
+
process: proc,
|
|
208
|
+
isPty: usePty,
|
|
164
209
|
isTerminal: true,
|
|
165
210
|
name,
|
|
166
211
|
logs: [],
|
|
@@ -172,27 +217,56 @@ export class ProcessManager {
|
|
|
172
217
|
skipDb: true,
|
|
173
218
|
};
|
|
174
219
|
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
|
-
}
|
|
220
|
+
if (usePty) {
|
|
221
|
+
const ptyProc = proc;
|
|
222
|
+
ptyProc.onData((data) => {
|
|
223
|
+
const msg = { type: "pty", data };
|
|
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
|
+
ptyProc.onExit(({ exitCode }) => {
|
|
231
|
+
const code = exitCode ?? 0;
|
|
232
|
+
console.log(`[ProcessManager] Terminal ${processId} exited with code ${code}`);
|
|
233
|
+
const msg = { type: "finished", exitCode: code };
|
|
234
|
+
runningProcess.logs.push(msg);
|
|
235
|
+
this.broadcast(processId, msg);
|
|
236
|
+
setTimeout(() => {
|
|
237
|
+
this.processes.delete(processId);
|
|
238
|
+
}, LOG_RETENTION_MS);
|
|
239
|
+
});
|
|
240
|
+
}
|
|
241
|
+
else {
|
|
242
|
+
const childProc = proc;
|
|
243
|
+
childProc.stdout?.on("data", (data) => {
|
|
244
|
+
const msg = { type: "pty", data: data.toString() };
|
|
245
|
+
runningProcess.logs.push(msg);
|
|
246
|
+
if (runningProcess.logs.length > TERMINAL_MAX_LOG_ENTRIES) {
|
|
247
|
+
runningProcess.logs = runningProcess.logs.slice(-TERMINAL_MAX_LOG_ENTRIES);
|
|
248
|
+
}
|
|
249
|
+
this.broadcast(processId, msg);
|
|
250
|
+
});
|
|
251
|
+
childProc.stderr?.on("data", (data) => {
|
|
252
|
+
const msg = { type: "pty", data: data.toString() };
|
|
253
|
+
runningProcess.logs.push(msg);
|
|
254
|
+
if (runningProcess.logs.length > TERMINAL_MAX_LOG_ENTRIES) {
|
|
255
|
+
runningProcess.logs = runningProcess.logs.slice(-TERMINAL_MAX_LOG_ENTRIES);
|
|
256
|
+
}
|
|
257
|
+
this.broadcast(processId, msg);
|
|
258
|
+
});
|
|
259
|
+
childProc.on("close", (code) => {
|
|
260
|
+
const exitCode = code ?? 0;
|
|
261
|
+
console.log(`[ProcessManager] Terminal ${processId} exited with code ${exitCode}`);
|
|
262
|
+
const msg = { type: "finished", exitCode };
|
|
263
|
+
runningProcess.logs.push(msg);
|
|
264
|
+
this.broadcast(processId, msg);
|
|
265
|
+
setTimeout(() => {
|
|
266
|
+
this.processes.delete(processId);
|
|
267
|
+
}, LOG_RETENTION_MS);
|
|
268
|
+
});
|
|
269
|
+
}
|
|
196
270
|
return { id: processId, name };
|
|
197
271
|
}
|
|
198
272
|
/**
|
|
@@ -604,21 +678,32 @@ export class ProcessManager {
|
|
|
604
678
|
return killed;
|
|
605
679
|
}
|
|
606
680
|
/**
|
|
607
|
-
* Handle input from the client (for PTY processes)
|
|
681
|
+
* Handle input from the client (for PTY or terminal processes)
|
|
608
682
|
*/
|
|
609
683
|
handleInput(processId, message) {
|
|
610
684
|
const runningProcess = this.processes.get(processId);
|
|
611
|
-
if (!runningProcess
|
|
685
|
+
if (!runningProcess) {
|
|
612
686
|
return false;
|
|
613
687
|
}
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
688
|
+
if (runningProcess.isPty) {
|
|
689
|
+
const ptyProcess = runningProcess.process;
|
|
690
|
+
if (message.type === "input") {
|
|
691
|
+
ptyProcess.write(message.data);
|
|
692
|
+
return true;
|
|
693
|
+
}
|
|
694
|
+
else if (message.type === "resize") {
|
|
695
|
+
ptyProcess.resize(message.cols, message.rows);
|
|
696
|
+
return true;
|
|
697
|
+
}
|
|
618
698
|
}
|
|
619
|
-
else if (
|
|
620
|
-
|
|
621
|
-
|
|
699
|
+
else if (runningProcess.isTerminal) {
|
|
700
|
+
// Non-PTY terminal fallback: write to stdin
|
|
701
|
+
const childProcess = runningProcess.process;
|
|
702
|
+
if (message.type === "input") {
|
|
703
|
+
childProcess.stdin?.write(message.data);
|
|
704
|
+
return true;
|
|
705
|
+
}
|
|
706
|
+
// resize is not supported for non-PTY processes
|
|
622
707
|
}
|
|
623
708
|
return false;
|
|
624
709
|
}
|
|
@@ -631,15 +716,19 @@ export class ProcessManager {
|
|
|
631
716
|
if (!runningProcess) {
|
|
632
717
|
throw new Error(`Terminal ${processId} not found`);
|
|
633
718
|
}
|
|
634
|
-
if (!runningProcess.
|
|
719
|
+
if (!runningProcess.isTerminal) {
|
|
635
720
|
throw new Error(`Process ${processId} is not an interactive terminal`);
|
|
636
721
|
}
|
|
637
722
|
const lastLog = runningProcess.logs[runningProcess.logs.length - 1];
|
|
638
723
|
if (lastLog?.type === "finished") {
|
|
639
724
|
throw new Error(`Terminal ${processId} has already exited`);
|
|
640
725
|
}
|
|
641
|
-
|
|
642
|
-
|
|
726
|
+
if (runningProcess.isPty) {
|
|
727
|
+
runningProcess.process.write(`${command}\n`);
|
|
728
|
+
}
|
|
729
|
+
else {
|
|
730
|
+
runningProcess.process.stdin?.write(`${command}\n`);
|
|
731
|
+
}
|
|
643
732
|
}
|
|
644
733
|
/**
|
|
645
734
|
* 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><!--tnhfWrpoZk8v3_sUvS5Ag--><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\":\"tnhfWrpoZk8v3-sUvS5Ag\",\"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><!--tnhfWrpoZk8v3_sUvS5Ag--><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\":\"tnhfWrpoZk8v3-sUvS5Ag\",\"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":"tnhfWrpoZk8v3-sUvS5Ag","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":"tnhfWrpoZk8v3-sUvS5Ag","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":"tnhfWrpoZk8v3-sUvS5Ag","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":"tnhfWrpoZk8v3-sUvS5Ag","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":"tnhfWrpoZk8v3-sUvS5Ag","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":"tnhfWrpoZk8v3-sUvS5Ag","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":"tnhfWrpoZk8v3-sUvS5Ag","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":"tnhfWrpoZk8v3-sUvS5Ag","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":"tnhfWrpoZk8v3-sUvS5Ag","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":"tnhfWrpoZk8v3-sUvS5Ag","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":"tnhfWrpoZk8v3-sUvS5Ag","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}
|