@ank1015/llm 0.0.2 → 0.0.4
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/README.md +5 -3
- package/dist/cli.js +130 -25
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/vendor/web/manifest.json +1 -1
- package/vendor/web/standalone/apps/web/.next/BUILD_ID +1 -1
- package/vendor/web/standalone/apps/web/.next/build-manifest.json +3 -3
- package/vendor/web/standalone/apps/web/.next/server/app/[projectId]/[artifactId]/[sessionId]/page_client-reference-manifest.js +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/[projectId]/[artifactId]/page_client-reference-manifest.js +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/[projectId]/page_client-reference-manifest.js +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/[projectId]/settings/general/page_client-reference-manifest.js +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/[projectId]/settings/models/page_client-reference-manifest.js +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/[projectId]/settings/page_client-reference-manifest.js +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_global-error.html +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_global-error.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_not-found.html +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_not-found.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_not-found.segments/_full.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_not-found.segments/_index.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/_not-found.segments/_tree.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/index.html +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/index.rsc +2 -2
- package/vendor/web/standalone/apps/web/.next/server/app/index.segments/__PAGE__.segment.rsc +2 -2
- package/vendor/web/standalone/apps/web/.next/server/app/index.segments/_full.segment.rsc +2 -2
- package/vendor/web/standalone/apps/web/.next/server/app/index.segments/_head.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/index.segments/_index.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/index.segments/_tree.segment.rsc +1 -1
- package/vendor/web/standalone/apps/web/.next/server/app/page_client-reference-manifest.js +1 -1
- package/vendor/web/standalone/apps/web/.next/server/middleware-build-manifest.js +3 -3
- package/vendor/web/standalone/apps/web/.next/server/pages/404.html +1 -1
- package/vendor/web/standalone/apps/web/.next/server/pages/500.html +1 -1
- package/vendor/web/standalone/apps/web/.next/static/chunks/{06clk7upag1ue.js → 0b.ctfbzc6fw0.js} +1 -1
- /package/vendor/web/standalone/apps/web/.next/static/{7QqzRrZj7D_kENN3oEWYh → XqZoMhXnUBLcpPQ30IsgL}/_buildManifest.js +0 -0
- /package/vendor/web/standalone/apps/web/.next/static/{7QqzRrZj7D_kENN3oEWYh → XqZoMhXnUBLcpPQ30IsgL}/_clientMiddlewareManifest.js +0 -0
- /package/vendor/web/standalone/apps/web/.next/static/{7QqzRrZj7D_kENN3oEWYh → XqZoMhXnUBLcpPQ30IsgL}/_ssgManifest.js +0 -0
package/README.md
CHANGED
|
@@ -8,11 +8,13 @@ npx @ank1015/llm
|
|
|
8
8
|
|
|
9
9
|
The launcher starts:
|
|
10
10
|
|
|
11
|
-
- the
|
|
12
|
-
- the
|
|
11
|
+
- the app on `http://127.0.0.1:3210`
|
|
12
|
+
- the API under the same origin at `http://127.0.0.1:3210/api`
|
|
13
|
+
|
|
14
|
+
The Hono API server and Next.js web client run on private random ports behind the launcher.
|
|
13
15
|
|
|
14
16
|
## Options
|
|
15
17
|
|
|
16
18
|
```bash
|
|
17
|
-
llm --host 127.0.0.1 --
|
|
19
|
+
llm --host 127.0.0.1 --port 3210 --no-open
|
|
18
20
|
```
|
package/dist/cli.js
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { spawn } from 'node:child_process';
|
|
3
|
-
import { createRequire } from 'node:module';
|
|
4
3
|
import { existsSync } from 'node:fs';
|
|
4
|
+
import { createServer, request as httpRequest, } from 'node:http';
|
|
5
|
+
import { createRequire } from 'node:module';
|
|
6
|
+
import { Socket } from 'node:net';
|
|
5
7
|
import { dirname, join, resolve } from 'node:path';
|
|
6
8
|
import { fileURLToPath } from 'node:url';
|
|
7
9
|
const DEFAULT_OPTIONS = {
|
|
8
|
-
apiPort: '
|
|
10
|
+
apiPort: '0',
|
|
9
11
|
host: '127.0.0.1',
|
|
10
12
|
openBrowser: true,
|
|
11
|
-
|
|
13
|
+
port: '3210',
|
|
14
|
+
webPort: '0',
|
|
12
15
|
};
|
|
13
16
|
const currentDirectory = dirname(fileURLToPath(import.meta.url));
|
|
14
17
|
const packageRoot = resolve(currentDirectory, '..');
|
|
@@ -35,7 +38,12 @@ function parseOptions(arguments_) {
|
|
|
35
38
|
index += 1;
|
|
36
39
|
continue;
|
|
37
40
|
}
|
|
38
|
-
if (argument === '--
|
|
41
|
+
if (argument === '--port') {
|
|
42
|
+
options.port = readValue(arguments_, index, argument);
|
|
43
|
+
index += 1;
|
|
44
|
+
continue;
|
|
45
|
+
}
|
|
46
|
+
if (argument === '--web-port') {
|
|
39
47
|
options.webPort = readValue(arguments_, index, argument);
|
|
40
48
|
index += 1;
|
|
41
49
|
continue;
|
|
@@ -55,10 +63,10 @@ function printHelp() {
|
|
|
55
63
|
console.log(`Usage: llm [options]
|
|
56
64
|
|
|
57
65
|
Options:
|
|
58
|
-
--host <host> Host for
|
|
59
|
-
--
|
|
60
|
-
--
|
|
61
|
-
--port <port>
|
|
66
|
+
--host <host> Host for the public app URL. Defaults to 127.0.0.1.
|
|
67
|
+
--port <port> Public app port for web and API. Defaults to 3210.
|
|
68
|
+
--api-port <port> Internal Hono API port. Defaults to a free random port.
|
|
69
|
+
--web-port <port> Internal Next.js web port. Defaults to a free random port.
|
|
62
70
|
--no-open Do not open the browser automatically.
|
|
63
71
|
-h, --help Show this help message.
|
|
64
72
|
`);
|
|
@@ -76,12 +84,74 @@ function spawnNode(entry, env, cwd) {
|
|
|
76
84
|
stdio: 'inherit',
|
|
77
85
|
});
|
|
78
86
|
}
|
|
87
|
+
function getForwardedHeaders(request, targetHost, targetPort) {
|
|
88
|
+
return {
|
|
89
|
+
...request.headers,
|
|
90
|
+
host: `${targetHost}:${targetPort}`,
|
|
91
|
+
'x-forwarded-host': request.headers.host,
|
|
92
|
+
'x-forwarded-proto': 'http',
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
function proxyHttpRequest(targetPort, targetHost, clientRequest, clientResponse) {
|
|
96
|
+
const proxyRequest = httpRequest({
|
|
97
|
+
headers: getForwardedHeaders(clientRequest, targetHost, targetPort),
|
|
98
|
+
hostname: targetHost,
|
|
99
|
+
method: clientRequest.method,
|
|
100
|
+
path: clientRequest.url,
|
|
101
|
+
port: Number(targetPort),
|
|
102
|
+
}, (proxyResponse) => {
|
|
103
|
+
clientResponse.writeHead(proxyResponse.statusCode ?? 500, proxyResponse.headers);
|
|
104
|
+
proxyResponse.pipe(clientResponse);
|
|
105
|
+
});
|
|
106
|
+
proxyRequest.on('error', () => {
|
|
107
|
+
if (!clientResponse.headersSent) {
|
|
108
|
+
clientResponse.writeHead(502, { 'content-type': 'text/plain; charset=utf-8' });
|
|
109
|
+
}
|
|
110
|
+
clientResponse.end('Upstream service is not ready yet.');
|
|
111
|
+
});
|
|
112
|
+
clientRequest.pipe(proxyRequest);
|
|
113
|
+
}
|
|
114
|
+
function proxyUpgrade(targetPort, targetHost, clientRequest, clientSocket, head) {
|
|
115
|
+
const upstreamSocket = new Socket();
|
|
116
|
+
upstreamSocket.connect(Number(targetPort), targetHost, () => {
|
|
117
|
+
const headers = Object.entries(getForwardedHeaders(clientRequest, targetHost, targetPort))
|
|
118
|
+
.flatMap(([key, value]) => {
|
|
119
|
+
if (value === undefined) {
|
|
120
|
+
return [];
|
|
121
|
+
}
|
|
122
|
+
if (Array.isArray(value)) {
|
|
123
|
+
return [`${key}: ${value.join(', ')}`];
|
|
124
|
+
}
|
|
125
|
+
return [`${key}: ${value}`];
|
|
126
|
+
})
|
|
127
|
+
.join('\r\n');
|
|
128
|
+
upstreamSocket.write(`${clientRequest.method ?? 'GET'} ${clientRequest.url ?? '/'} HTTP/${clientRequest.httpVersion}\r\n${headers}\r\n\r\n`);
|
|
129
|
+
if (head.length > 0) {
|
|
130
|
+
upstreamSocket.write(head);
|
|
131
|
+
}
|
|
132
|
+
upstreamSocket.pipe(clientSocket);
|
|
133
|
+
clientSocket.pipe(upstreamSocket);
|
|
134
|
+
});
|
|
135
|
+
upstreamSocket.on('error', () => {
|
|
136
|
+
clientSocket.end('HTTP/1.1 502 Bad Gateway\r\nConnection: close\r\n\r\n');
|
|
137
|
+
});
|
|
138
|
+
}
|
|
139
|
+
function isApiRequest(url) {
|
|
140
|
+
return url === '/api' || url === '/health' || url?.startsWith('/api/') === true;
|
|
141
|
+
}
|
|
142
|
+
function createGatewayServer(apiPort, webPort, internalHost) {
|
|
143
|
+
const server = createServer((request, response) => {
|
|
144
|
+
const targetPort = isApiRequest(request.url) ? apiPort : webPort;
|
|
145
|
+
proxyHttpRequest(targetPort, internalHost, request, response);
|
|
146
|
+
});
|
|
147
|
+
server.on('upgrade', (request, socket, head) => {
|
|
148
|
+
const targetPort = isApiRequest(request.url) ? apiPort : webPort;
|
|
149
|
+
proxyUpgrade(targetPort, internalHost, request, socket, head);
|
|
150
|
+
});
|
|
151
|
+
return server;
|
|
152
|
+
}
|
|
79
153
|
function openUrl(url) {
|
|
80
|
-
const opener = process.platform === 'darwin'
|
|
81
|
-
? 'open'
|
|
82
|
-
: process.platform === 'win32'
|
|
83
|
-
? 'cmd'
|
|
84
|
-
: 'xdg-open';
|
|
154
|
+
const opener = process.platform === 'darwin' ? 'open' : process.platform === 'win32' ? 'cmd' : 'xdg-open';
|
|
85
155
|
const args = process.platform === 'win32' ? ['/c', 'start', '""', url] : [url];
|
|
86
156
|
const child = spawn(opener, args, {
|
|
87
157
|
detached: true,
|
|
@@ -96,41 +166,76 @@ function shutdown(children) {
|
|
|
96
166
|
}
|
|
97
167
|
}
|
|
98
168
|
}
|
|
99
|
-
|
|
169
|
+
function listen(server, port, host) {
|
|
170
|
+
return new Promise((resolveListen, reject) => {
|
|
171
|
+
server.once('error', reject);
|
|
172
|
+
server.listen(Number(port), host, () => {
|
|
173
|
+
server.off('error', reject);
|
|
174
|
+
const address = server.address();
|
|
175
|
+
if (!address || typeof address === 'string') {
|
|
176
|
+
reject(new Error('Unable to read listening port'));
|
|
177
|
+
return;
|
|
178
|
+
}
|
|
179
|
+
resolveListen(String(address.port));
|
|
180
|
+
});
|
|
181
|
+
});
|
|
182
|
+
}
|
|
183
|
+
async function findAvailablePort(host) {
|
|
184
|
+
const server = createServer();
|
|
185
|
+
const port = await listen(server, '0', host);
|
|
186
|
+
await new Promise((resolveClose, reject) => {
|
|
187
|
+
server.close((error) => {
|
|
188
|
+
if (error) {
|
|
189
|
+
reject(error);
|
|
190
|
+
return;
|
|
191
|
+
}
|
|
192
|
+
resolveClose();
|
|
193
|
+
});
|
|
194
|
+
});
|
|
195
|
+
return port;
|
|
196
|
+
}
|
|
197
|
+
async function main() {
|
|
100
198
|
const options = parseOptions(process.argv.slice(2));
|
|
101
199
|
const webEntry = resolveWebEntry();
|
|
102
200
|
const serverEntry = resolveServerEntry();
|
|
103
201
|
if (!existsSync(webEntry)) {
|
|
104
202
|
throw new Error(`Missing assembled web server at ${webEntry}. Run pnpm release:app:build first.`);
|
|
105
203
|
}
|
|
106
|
-
const
|
|
107
|
-
const webBaseUrl = `http://${options.host}:${options.webPort}`;
|
|
204
|
+
const internalHost = '127.0.0.1';
|
|
108
205
|
const webCwd = dirname(webEntry);
|
|
109
206
|
const children = [];
|
|
207
|
+
const apiPort = options.apiPort === '0' ? await findAvailablePort(internalHost) : options.apiPort;
|
|
208
|
+
const webPort = options.webPort === '0' ? await findAvailablePort(internalHost) : options.webPort;
|
|
209
|
+
const publicServer = createGatewayServer(apiPort, webPort, internalHost);
|
|
210
|
+
const gatewayPort = await listen(publicServer, options.port, options.host);
|
|
211
|
+
const gatewayBaseUrl = `http://${options.host}:${gatewayPort}`;
|
|
212
|
+
const apiBaseUrl = gatewayBaseUrl;
|
|
110
213
|
children.push(spawnNode(serverEntry, {
|
|
111
214
|
...process.env,
|
|
112
|
-
HOST:
|
|
113
|
-
PORT:
|
|
215
|
+
HOST: internalHost,
|
|
216
|
+
PORT: apiPort,
|
|
114
217
|
}));
|
|
115
218
|
children.push(spawnNode(webEntry, {
|
|
116
219
|
...process.env,
|
|
117
|
-
HOSTNAME:
|
|
220
|
+
HOSTNAME: internalHost,
|
|
118
221
|
NEXT_PUBLIC_LLM_SERVER_BASE_URL: apiBaseUrl,
|
|
119
|
-
PORT:
|
|
222
|
+
PORT: webPort,
|
|
120
223
|
}, webCwd));
|
|
121
|
-
console.log(`LLM
|
|
122
|
-
console.log(`LLM
|
|
224
|
+
console.log(`LLM app: ${gatewayBaseUrl}`);
|
|
225
|
+
console.log(`LLM API: ${gatewayBaseUrl}/api`);
|
|
123
226
|
if (options.openBrowser) {
|
|
124
|
-
setTimeout(() => openUrl(
|
|
227
|
+
setTimeout(() => openUrl(gatewayBaseUrl), 1500);
|
|
125
228
|
}
|
|
126
229
|
for (const signal of ['SIGINT', 'SIGTERM']) {
|
|
127
230
|
process.on(signal, () => {
|
|
231
|
+
publicServer.close();
|
|
128
232
|
shutdown(children);
|
|
129
233
|
process.exit(0);
|
|
130
234
|
});
|
|
131
235
|
}
|
|
132
236
|
for (const child of children) {
|
|
133
237
|
child.on('exit', (code, signal) => {
|
|
238
|
+
publicServer.close();
|
|
134
239
|
shutdown(children);
|
|
135
240
|
if (signal) {
|
|
136
241
|
process.kill(process.pid, signal);
|
|
@@ -140,8 +245,8 @@ try {
|
|
|
140
245
|
});
|
|
141
246
|
}
|
|
142
247
|
}
|
|
143
|
-
catch
|
|
248
|
+
main().catch((error) => {
|
|
144
249
|
console.error(error instanceof Error ? error.message : error);
|
|
145
250
|
process.exit(1);
|
|
146
|
-
}
|
|
251
|
+
});
|
|
147
252
|
//# sourceMappingURL=cli.js.map
|
package/dist/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,KAAK,EAAqB,MAAM,oBAAoB,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/vendor/web/manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
XqZoMhXnUBLcpPQ30IsgL
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
"static/chunks/03~yq9q893hmn.js"
|
|
8
8
|
],
|
|
9
9
|
"lowPriorityFiles": [
|
|
10
|
-
"static/
|
|
11
|
-
"static/
|
|
12
|
-
"static/
|
|
10
|
+
"static/XqZoMhXnUBLcpPQ30IsgL/_buildManifest.js",
|
|
11
|
+
"static/XqZoMhXnUBLcpPQ30IsgL/_ssgManifest.js",
|
|
12
|
+
"static/XqZoMhXnUBLcpPQ30IsgL/_clientMiddlewareManifest.js"
|
|
13
13
|
],
|
|
14
14
|
"rootMainFiles": [
|
|
15
15
|
"static/chunks/0-lj~26~qh8.9.js",
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
|
|
2
|
-
globalThis.__RSC_MANIFEST["/[projectId]/[artifactId]/[sessionId]/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":40992,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":40992,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":31671,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":31671,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":7283,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":7283,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":22029,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":22029,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":55323,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":55323,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":96782,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":96782,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":38632,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":38632,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/script.js <module evaluation>":{"id":91641,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/script.js":{"id":91641,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/query-provider.tsx <module evaluation>":{"id":97955,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/query-provider.tsx":{"id":97955,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/theme-init.tsx <module evaluation>":{"id":11258,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/theme-init.tsx":{"id":11258,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/toaster.tsx <module evaluation>":{"id":73398,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/toaster.tsx":{"id":73398,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js <module evaluation>":{"id":10851,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js":{"id":10851,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/project-layout-shell.tsx <module evaluation>":{"id":99478,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/06clk7upag1ue.js","/_next/static/chunks/0xf5f8uy7_lzs.js"],"async":false},"[project]/apps/web/src/components/project-layout-shell.tsx":{"id":99478,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/06clk7upag1ue.js","/_next/static/chunks/0xf5f8uy7_lzs.js"],"async":false},"[project]/apps/web/src/components/artifact-session-panel.tsx <module evaluation>":{"id":85563,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/06clk7upag1ue.js","/_next/static/chunks/0xf5f8uy7_lzs.js","/_next/static/chunks/0pycgzspl~h_b.js","/_next/static/chunks/0w-64ufgu9ecb.js","/_next/static/chunks/015h.fn6kz6t3.js"],"async":true},"[project]/apps/web/src/components/artifact-session-panel.tsx":{"id":85563,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/06clk7upag1ue.js","/_next/static/chunks/0xf5f8uy7_lzs.js","/_next/static/chunks/0pycgzspl~h_b.js","/_next/static/chunks/0w-64ufgu9ecb.js","/_next/static/chunks/015h.fn6kz6t3.js"],"async":true}},"ssrModuleMapping":{"40992":{"*":{"id":1050,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"31671":{"*":{"id":88578,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"7283":{"*":{"id":54650,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"22029":{"*":{"id":82021,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"55323":{"*":{"id":86244,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"96782":{"*":{"id":10948,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"38632":{"*":{"id":24876,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"91641":{"*":{"id":93564,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"97955":{"*":{"id":85636,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"11258":{"*":{"id":44437,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"73398":{"*":{"id":61478,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"10851":{"*":{"id":14107,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js","server/chunks/ssr/11y7_next_dist_client_components_0-avzcz._.js"],"async":false}},"99478":{"*":{"id":991,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js","server/chunks/ssr/_0wmbt5~._.js","server/chunks/ssr/11y7_next_dist_0zau7px._.js","server/chunks/ssr/11y7_next_0o~q-~q._.js","server/chunks/ssr/_0fwc7fs._.js","server/chunks/ssr/_0of~_b1._.js","server/chunks/ssr/apps_web_src_0t8cx-p._.js"],"async":false}},"85563":{"*":{"id":81138,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js","server/chunks/ssr/_0wmbt5~._.js","server/chunks/ssr/11y7_next_dist_0zau7px._.js","server/chunks/ssr/11y7_next_0o~q-~q._.js","server/chunks/ssr/_0fwc7fs._.js","server/chunks/ssr/_0of~_b1._.js","server/chunks/ssr/apps_web_src_0t8cx-p._.js","server/chunks/ssr/_0.7y7gz._.js","server/chunks/ssr/[root-of-the-server]__05ye3dq._.js","server/chunks/ssr/apps_web_src_0iey.cb._.js"],"async":true}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"40992":{"*":{"id":72355,"name":"*","chunks":[],"async":false}},"31671":{"*":{"id":99728,"name":"*","chunks":[],"async":false}},"7283":{"*":{"id":48420,"name":"*","chunks":[],"async":false}},"22029":{"*":{"id":3244,"name":"*","chunks":[],"async":false}},"55323":{"*":{"id":70653,"name":"*","chunks":[],"async":false}},"96782":{"*":{"id":46702,"name":"*","chunks":[],"async":false}},"38632":{"*":{"id":15926,"name":"*","chunks":[],"async":false}},"91641":{"*":{"id":15787,"name":"*","chunks":[],"async":false}},"97955":{"*":{"id":54161,"name":"*","chunks":[],"async":false}},"11258":{"*":{"id":86262,"name":"*","chunks":[],"async":false}},"73398":{"*":{"id":33971,"name":"*","chunks":[],"async":false}},"10851":{"*":{"id":38043,"name":"*","chunks":[],"async":false}},"99478":{"*":{"id":84653,"name":"*","chunks":[],"async":false}},"85563":{"*":{"id":52874,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/apps/web/src/app/layout":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}],"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}],"[project]/apps/web/src/app/[projectId]/layout":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}],"[project]/apps/web/src/app/[projectId]/[artifactId]/[sessionId]/page":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}]},"entryJSFiles":{"[project]/apps/web/src/app/layout":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js"],"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js"],"[project]/apps/web/src/app/[projectId]/layout":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js","static/chunks/00t-9736c72d2.js","static/chunks/17c.fjhj.e67x.js","static/chunks/06clk7upag1ue.js","static/chunks/0xf5f8uy7_lzs.js"],"[project]/apps/web/src/app/[projectId]/[artifactId]/[sessionId]/page":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js","static/chunks/00t-9736c72d2.js","static/chunks/17c.fjhj.e67x.js","static/chunks/06clk7upag1ue.js","static/chunks/0xf5f8uy7_lzs.js","static/chunks/0pycgzspl~h_b.js","static/chunks/0w-64ufgu9ecb.js","static/chunks/015h.fn6kz6t3.js"]}};
|
|
2
|
+
globalThis.__RSC_MANIFEST["/[projectId]/[artifactId]/[sessionId]/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":40992,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":40992,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":31671,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":31671,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":7283,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":7283,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":22029,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":22029,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":55323,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":55323,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":96782,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":96782,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":38632,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":38632,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/script.js <module evaluation>":{"id":91641,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/script.js":{"id":91641,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/query-provider.tsx <module evaluation>":{"id":97955,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/query-provider.tsx":{"id":97955,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/theme-init.tsx <module evaluation>":{"id":11258,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/theme-init.tsx":{"id":11258,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/toaster.tsx <module evaluation>":{"id":73398,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/toaster.tsx":{"id":73398,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js <module evaluation>":{"id":10851,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js":{"id":10851,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/project-layout-shell.tsx <module evaluation>":{"id":99478,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/0b.ctfbzc6fw0.js","/_next/static/chunks/0xf5f8uy7_lzs.js"],"async":false},"[project]/apps/web/src/components/project-layout-shell.tsx":{"id":99478,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/0b.ctfbzc6fw0.js","/_next/static/chunks/0xf5f8uy7_lzs.js"],"async":false},"[project]/apps/web/src/components/artifact-session-panel.tsx <module evaluation>":{"id":85563,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/0b.ctfbzc6fw0.js","/_next/static/chunks/0xf5f8uy7_lzs.js","/_next/static/chunks/0pycgzspl~h_b.js","/_next/static/chunks/0w-64ufgu9ecb.js","/_next/static/chunks/015h.fn6kz6t3.js"],"async":true},"[project]/apps/web/src/components/artifact-session-panel.tsx":{"id":85563,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/0b.ctfbzc6fw0.js","/_next/static/chunks/0xf5f8uy7_lzs.js","/_next/static/chunks/0pycgzspl~h_b.js","/_next/static/chunks/0w-64ufgu9ecb.js","/_next/static/chunks/015h.fn6kz6t3.js"],"async":true}},"ssrModuleMapping":{"40992":{"*":{"id":1050,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"31671":{"*":{"id":88578,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"7283":{"*":{"id":54650,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"22029":{"*":{"id":82021,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"55323":{"*":{"id":86244,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"96782":{"*":{"id":10948,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"38632":{"*":{"id":24876,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"91641":{"*":{"id":93564,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"97955":{"*":{"id":85636,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"11258":{"*":{"id":44437,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"73398":{"*":{"id":61478,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"10851":{"*":{"id":14107,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js","server/chunks/ssr/11y7_next_dist_client_components_0-avzcz._.js"],"async":false}},"99478":{"*":{"id":991,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js","server/chunks/ssr/_0wmbt5~._.js","server/chunks/ssr/11y7_next_dist_0zau7px._.js","server/chunks/ssr/11y7_next_0o~q-~q._.js","server/chunks/ssr/_0fwc7fs._.js","server/chunks/ssr/_0of~_b1._.js","server/chunks/ssr/apps_web_src_0t8cx-p._.js"],"async":false}},"85563":{"*":{"id":81138,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js","server/chunks/ssr/_0wmbt5~._.js","server/chunks/ssr/11y7_next_dist_0zau7px._.js","server/chunks/ssr/11y7_next_0o~q-~q._.js","server/chunks/ssr/_0fwc7fs._.js","server/chunks/ssr/_0of~_b1._.js","server/chunks/ssr/apps_web_src_0t8cx-p._.js","server/chunks/ssr/_0.7y7gz._.js","server/chunks/ssr/[root-of-the-server]__05ye3dq._.js","server/chunks/ssr/apps_web_src_0iey.cb._.js"],"async":true}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"40992":{"*":{"id":72355,"name":"*","chunks":[],"async":false}},"31671":{"*":{"id":99728,"name":"*","chunks":[],"async":false}},"7283":{"*":{"id":48420,"name":"*","chunks":[],"async":false}},"22029":{"*":{"id":3244,"name":"*","chunks":[],"async":false}},"55323":{"*":{"id":70653,"name":"*","chunks":[],"async":false}},"96782":{"*":{"id":46702,"name":"*","chunks":[],"async":false}},"38632":{"*":{"id":15926,"name":"*","chunks":[],"async":false}},"91641":{"*":{"id":15787,"name":"*","chunks":[],"async":false}},"97955":{"*":{"id":54161,"name":"*","chunks":[],"async":false}},"11258":{"*":{"id":86262,"name":"*","chunks":[],"async":false}},"73398":{"*":{"id":33971,"name":"*","chunks":[],"async":false}},"10851":{"*":{"id":38043,"name":"*","chunks":[],"async":false}},"99478":{"*":{"id":84653,"name":"*","chunks":[],"async":false}},"85563":{"*":{"id":52874,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/apps/web/src/app/layout":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}],"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}],"[project]/apps/web/src/app/[projectId]/layout":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}],"[project]/apps/web/src/app/[projectId]/[artifactId]/[sessionId]/page":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}]},"entryJSFiles":{"[project]/apps/web/src/app/layout":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js"],"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js"],"[project]/apps/web/src/app/[projectId]/layout":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js","static/chunks/00t-9736c72d2.js","static/chunks/17c.fjhj.e67x.js","static/chunks/0b.ctfbzc6fw0.js","static/chunks/0xf5f8uy7_lzs.js"],"[project]/apps/web/src/app/[projectId]/[artifactId]/[sessionId]/page":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js","static/chunks/00t-9736c72d2.js","static/chunks/17c.fjhj.e67x.js","static/chunks/0b.ctfbzc6fw0.js","static/chunks/0xf5f8uy7_lzs.js","static/chunks/0pycgzspl~h_b.js","static/chunks/0w-64ufgu9ecb.js","static/chunks/015h.fn6kz6t3.js"]}};
|
|
3
3
|
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
|
|
2
|
-
globalThis.__RSC_MANIFEST["/[projectId]/[artifactId]/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":40992,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":40992,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":31671,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":31671,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":7283,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":7283,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":22029,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":22029,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":55323,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":55323,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":96782,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":96782,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":38632,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":38632,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/script.js <module evaluation>":{"id":91641,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/script.js":{"id":91641,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/query-provider.tsx <module evaluation>":{"id":97955,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/query-provider.tsx":{"id":97955,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/theme-init.tsx <module evaluation>":{"id":11258,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/theme-init.tsx":{"id":11258,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/toaster.tsx <module evaluation>":{"id":73398,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/toaster.tsx":{"id":73398,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js <module evaluation>":{"id":10851,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js":{"id":10851,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/project-layout-shell.tsx <module evaluation>":{"id":99478,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/06clk7upag1ue.js","/_next/static/chunks/0xf5f8uy7_lzs.js"],"async":false},"[project]/apps/web/src/components/project-layout-shell.tsx":{"id":99478,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/06clk7upag1ue.js","/_next/static/chunks/0xf5f8uy7_lzs.js"],"async":false},"[project]/apps/web/src/components/artifact-main-panel.tsx <module evaluation>":{"id":8689,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/06clk7upag1ue.js","/_next/static/chunks/0xf5f8uy7_lzs.js","/_next/static/chunks/0~0si.pijckdc.js","/_next/static/chunks/015h.fn6kz6t3.js"],"async":false},"[project]/apps/web/src/components/artifact-main-panel.tsx":{"id":8689,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/06clk7upag1ue.js","/_next/static/chunks/0xf5f8uy7_lzs.js","/_next/static/chunks/0~0si.pijckdc.js","/_next/static/chunks/015h.fn6kz6t3.js"],"async":false}},"ssrModuleMapping":{"40992":{"*":{"id":1050,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"31671":{"*":{"id":88578,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"7283":{"*":{"id":54650,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"22029":{"*":{"id":82021,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"55323":{"*":{"id":86244,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"96782":{"*":{"id":10948,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"38632":{"*":{"id":24876,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"91641":{"*":{"id":93564,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"97955":{"*":{"id":85636,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"11258":{"*":{"id":44437,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"73398":{"*":{"id":61478,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"10851":{"*":{"id":14107,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js","server/chunks/ssr/11y7_next_dist_client_components_0-avzcz._.js"],"async":false}},"99478":{"*":{"id":991,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js","server/chunks/ssr/_0wmbt5~._.js","server/chunks/ssr/11y7_next_dist_0zau7px._.js","server/chunks/ssr/11y7_next_0o~q-~q._.js","server/chunks/ssr/_0fwc7fs._.js","server/chunks/ssr/_0of~_b1._.js","server/chunks/ssr/apps_web_src_0t8cx-p._.js"],"async":false}},"8689":{"*":{"id":14408,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js","server/chunks/ssr/_0wmbt5~._.js","server/chunks/ssr/11y7_next_dist_0zau7px._.js","server/chunks/ssr/11y7_next_0o~q-~q._.js","server/chunks/ssr/_0fwc7fs._.js","server/chunks/ssr/_0of~_b1._.js","server/chunks/ssr/apps_web_src_0t8cx-p._.js","server/chunks/ssr/_0x4gm_c._.js","server/chunks/ssr/apps_web_src_0iey.cb._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"40992":{"*":{"id":72355,"name":"*","chunks":[],"async":false}},"31671":{"*":{"id":99728,"name":"*","chunks":[],"async":false}},"7283":{"*":{"id":48420,"name":"*","chunks":[],"async":false}},"22029":{"*":{"id":3244,"name":"*","chunks":[],"async":false}},"55323":{"*":{"id":70653,"name":"*","chunks":[],"async":false}},"96782":{"*":{"id":46702,"name":"*","chunks":[],"async":false}},"38632":{"*":{"id":15926,"name":"*","chunks":[],"async":false}},"91641":{"*":{"id":15787,"name":"*","chunks":[],"async":false}},"97955":{"*":{"id":54161,"name":"*","chunks":[],"async":false}},"11258":{"*":{"id":86262,"name":"*","chunks":[],"async":false}},"73398":{"*":{"id":33971,"name":"*","chunks":[],"async":false}},"10851":{"*":{"id":38043,"name":"*","chunks":[],"async":false}},"99478":{"*":{"id":84653,"name":"*","chunks":[],"async":false}},"8689":{"*":{"id":5773,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/apps/web/src/app/layout":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}],"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}],"[project]/apps/web/src/app/[projectId]/layout":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}],"[project]/apps/web/src/app/[projectId]/[artifactId]/page":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}]},"entryJSFiles":{"[project]/apps/web/src/app/layout":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js"],"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js"],"[project]/apps/web/src/app/[projectId]/layout":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js","static/chunks/00t-9736c72d2.js","static/chunks/17c.fjhj.e67x.js","static/chunks/06clk7upag1ue.js","static/chunks/0xf5f8uy7_lzs.js"],"[project]/apps/web/src/app/[projectId]/[artifactId]/page":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js","static/chunks/00t-9736c72d2.js","static/chunks/17c.fjhj.e67x.js","static/chunks/06clk7upag1ue.js","static/chunks/0xf5f8uy7_lzs.js","static/chunks/0~0si.pijckdc.js","static/chunks/015h.fn6kz6t3.js"]}};
|
|
2
|
+
globalThis.__RSC_MANIFEST["/[projectId]/[artifactId]/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":40992,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":40992,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":31671,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":31671,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":7283,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":7283,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":22029,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":22029,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":55323,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":55323,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":96782,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":96782,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":38632,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":38632,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/script.js <module evaluation>":{"id":91641,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/script.js":{"id":91641,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/query-provider.tsx <module evaluation>":{"id":97955,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/query-provider.tsx":{"id":97955,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/theme-init.tsx <module evaluation>":{"id":11258,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/theme-init.tsx":{"id":11258,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/toaster.tsx <module evaluation>":{"id":73398,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/toaster.tsx":{"id":73398,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js <module evaluation>":{"id":10851,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js":{"id":10851,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js"],"async":false},"[project]/apps/web/src/components/project-layout-shell.tsx <module evaluation>":{"id":99478,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/0b.ctfbzc6fw0.js","/_next/static/chunks/0xf5f8uy7_lzs.js"],"async":false},"[project]/apps/web/src/components/project-layout-shell.tsx":{"id":99478,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/0b.ctfbzc6fw0.js","/_next/static/chunks/0xf5f8uy7_lzs.js"],"async":false},"[project]/apps/web/src/components/artifact-main-panel.tsx <module evaluation>":{"id":8689,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/0b.ctfbzc6fw0.js","/_next/static/chunks/0xf5f8uy7_lzs.js","/_next/static/chunks/0~0si.pijckdc.js","/_next/static/chunks/015h.fn6kz6t3.js"],"async":false},"[project]/apps/web/src/components/artifact-main-panel.tsx":{"id":8689,"name":"*","chunks":["/_next/static/chunks/0uvqjx3-y6a2k.js","/_next/static/chunks/099a.59-qgqp~.js","/_next/static/chunks/14j8zhw3qjti_.js","/_next/static/chunks/00t-9736c72d2.js","/_next/static/chunks/17c.fjhj.e67x.js","/_next/static/chunks/0b.ctfbzc6fw0.js","/_next/static/chunks/0xf5f8uy7_lzs.js","/_next/static/chunks/0~0si.pijckdc.js","/_next/static/chunks/015h.fn6kz6t3.js"],"async":false}},"ssrModuleMapping":{"40992":{"*":{"id":1050,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"31671":{"*":{"id":88578,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"7283":{"*":{"id":54650,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"22029":{"*":{"id":82021,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"55323":{"*":{"id":86244,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"96782":{"*":{"id":10948,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"38632":{"*":{"id":24876,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"91641":{"*":{"id":93564,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"97955":{"*":{"id":85636,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"11258":{"*":{"id":44437,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"73398":{"*":{"id":61478,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js"],"async":false}},"10851":{"*":{"id":14107,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js","server/chunks/ssr/11y7_next_dist_client_components_0-avzcz._.js"],"async":false}},"99478":{"*":{"id":991,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js","server/chunks/ssr/_0wmbt5~._.js","server/chunks/ssr/11y7_next_dist_0zau7px._.js","server/chunks/ssr/11y7_next_0o~q-~q._.js","server/chunks/ssr/_0fwc7fs._.js","server/chunks/ssr/_0of~_b1._.js","server/chunks/ssr/apps_web_src_0t8cx-p._.js"],"async":false}},"8689":{"*":{"id":14408,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__10s_cls._.js","server/chunks/ssr/11y7_next_dist_0pyu1e5._.js","server/chunks/ssr/node_modules__pnpm_0ms1evg._.js","server/chunks/ssr/_0wmbt5~._.js","server/chunks/ssr/11y7_next_dist_0zau7px._.js","server/chunks/ssr/11y7_next_0o~q-~q._.js","server/chunks/ssr/_0fwc7fs._.js","server/chunks/ssr/_0of~_b1._.js","server/chunks/ssr/apps_web_src_0t8cx-p._.js","server/chunks/ssr/_0x4gm_c._.js","server/chunks/ssr/apps_web_src_0iey.cb._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"40992":{"*":{"id":72355,"name":"*","chunks":[],"async":false}},"31671":{"*":{"id":99728,"name":"*","chunks":[],"async":false}},"7283":{"*":{"id":48420,"name":"*","chunks":[],"async":false}},"22029":{"*":{"id":3244,"name":"*","chunks":[],"async":false}},"55323":{"*":{"id":70653,"name":"*","chunks":[],"async":false}},"96782":{"*":{"id":46702,"name":"*","chunks":[],"async":false}},"38632":{"*":{"id":15926,"name":"*","chunks":[],"async":false}},"91641":{"*":{"id":15787,"name":"*","chunks":[],"async":false}},"97955":{"*":{"id":54161,"name":"*","chunks":[],"async":false}},"11258":{"*":{"id":86262,"name":"*","chunks":[],"async":false}},"73398":{"*":{"id":33971,"name":"*","chunks":[],"async":false}},"10851":{"*":{"id":38043,"name":"*","chunks":[],"async":false}},"99478":{"*":{"id":84653,"name":"*","chunks":[],"async":false}},"8689":{"*":{"id":5773,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/apps/web/src/app/layout":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}],"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}],"[project]/apps/web/src/app/[projectId]/layout":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}],"[project]/apps/web/src/app/[projectId]/[artifactId]/page":[{"path":"static/chunks/129yjzc-nv7_..css","inlined":false}]},"entryJSFiles":{"[project]/apps/web/src/app/layout":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js"],"[project]/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js"],"[project]/apps/web/src/app/[projectId]/layout":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js","static/chunks/00t-9736c72d2.js","static/chunks/17c.fjhj.e67x.js","static/chunks/0b.ctfbzc6fw0.js","static/chunks/0xf5f8uy7_lzs.js"],"[project]/apps/web/src/app/[projectId]/[artifactId]/page":["static/chunks/0uvqjx3-y6a2k.js","static/chunks/099a.59-qgqp~.js","static/chunks/14j8zhw3qjti_.js","static/chunks/00t-9736c72d2.js","static/chunks/17c.fjhj.e67x.js","static/chunks/0b.ctfbzc6fw0.js","static/chunks/0xf5f8uy7_lzs.js","static/chunks/0~0si.pijckdc.js","static/chunks/015h.fn6kz6t3.js"]}};
|
|
3
3
|
|