@ank1015/llm 0.0.3 → 0.0.5
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/cli.js +3 -7
- 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/chunks/ssr/_0of~_b1._.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 → 0fs7ubgq60evo.js} +1 -1
- /package/vendor/web/standalone/apps/web/.next/static/{7QqzRrZj7D_kENN3oEWYh → np_ynlH3e9xykX5sp6y7K}/_buildManifest.js +0 -0
- /package/vendor/web/standalone/apps/web/.next/static/{7QqzRrZj7D_kENN3oEWYh → np_ynlH3e9xykX5sp6y7K}/_clientMiddlewareManifest.js +0 -0
- /package/vendor/web/standalone/apps/web/.next/static/{7QqzRrZj7D_kENN3oEWYh → np_ynlH3e9xykX5sp6y7K}/_ssgManifest.js +0 -0
package/dist/cli.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { spawn } from 'node:child_process';
|
|
3
|
-
import {
|
|
3
|
+
import { existsSync } from 'node:fs';
|
|
4
|
+
import { createServer, request as httpRequest, } from 'node:http';
|
|
4
5
|
import { createRequire } from 'node:module';
|
|
5
6
|
import { Socket } from 'node:net';
|
|
6
|
-
import { existsSync } from 'node:fs';
|
|
7
7
|
import { dirname, join, resolve } from 'node:path';
|
|
8
8
|
import { fileURLToPath } from 'node:url';
|
|
9
9
|
const DEFAULT_OPTIONS = {
|
|
@@ -151,11 +151,7 @@ function createGatewayServer(apiPort, webPort, internalHost) {
|
|
|
151
151
|
return server;
|
|
152
152
|
}
|
|
153
153
|
function openUrl(url) {
|
|
154
|
-
const opener = process.platform === 'darwin'
|
|
155
|
-
? 'open'
|
|
156
|
-
: process.platform === 'win32'
|
|
157
|
-
? 'cmd'
|
|
158
|
-
: 'xdg-open';
|
|
154
|
+
const opener = process.platform === 'darwin' ? 'open' : process.platform === 'win32' ? 'cmd' : 'xdg-open';
|
|
159
155
|
const args = process.platform === 'win32' ? ['/c', 'start', '""', url] : [url];
|
|
160
156
|
const child = spawn(opener, args, {
|
|
161
157
|
detached: true,
|
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,
|
|
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
|
+
np_ynlH3e9xykX5sp6y7K
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
"static/chunks/03~yq9q893hmn.js"
|
|
8
8
|
],
|
|
9
9
|
"lowPriorityFiles": [
|
|
10
|
-
"static/
|
|
11
|
-
"static/
|
|
12
|
-
"static/
|
|
10
|
+
"static/np_ynlH3e9xykX5sp6y7K/_buildManifest.js",
|
|
11
|
+
"static/np_ynlH3e9xykX5sp6y7K/_ssgManifest.js",
|
|
12
|
+
"static/np_ynlH3e9xykX5sp6y7K/_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/0fs7ubgq60evo.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/0fs7ubgq60evo.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/0fs7ubgq60evo.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/0fs7ubgq60evo.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/0fs7ubgq60evo.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/0fs7ubgq60evo.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/0fs7ubgq60evo.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/0fs7ubgq60evo.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/0fs7ubgq60evo.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/0fs7ubgq60evo.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/0fs7ubgq60evo.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/0fs7ubgq60evo.js","static/chunks/0xf5f8uy7_lzs.js","static/chunks/0~0si.pijckdc.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]/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}},"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}}},"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}}},"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}]},"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"]}};
|
|
2
|
+
globalThis.__RSC_MANIFEST["/[projectId]/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/0fs7ubgq60evo.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/0fs7ubgq60evo.js","/_next/static/chunks/0xf5f8uy7_lzs.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}}},"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}}},"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}]},"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/0fs7ubgq60evo.js","static/chunks/0xf5f8uy7_lzs.js"]}};
|
|
3
3
|
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
|
|
2
|
-
globalThis.__RSC_MANIFEST["/[projectId]/settings/general/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}},"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}}},"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}}},"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}]},"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"]}};
|
|
2
|
+
globalThis.__RSC_MANIFEST["/[projectId]/settings/general/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/0fs7ubgq60evo.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/0fs7ubgq60evo.js","/_next/static/chunks/0xf5f8uy7_lzs.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}}},"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}}},"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}]},"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/0fs7ubgq60evo.js","static/chunks/0xf5f8uy7_lzs.js"]}};
|
|
3
3
|
|