Spaces:
Running
Running
GitHub Action commited on
Commit ·
c592d77
0
Parent(s):
Deploy from GitHub Actions: df5a8ff24af4958ea227f47605368fc710dfbfa8
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- Dockerfile +25 -0
- README.md +65 -0
- apps/studio/.next/BUILD_ID +1 -0
- apps/studio/.next/app-path-routes-manifest.json +16 -0
- apps/studio/.next/build-manifest.json +20 -0
- apps/studio/.next/package.json +1 -0
- apps/studio/.next/prerender-manifest.json +109 -0
- apps/studio/.next/required-server-files.json +345 -0
- apps/studio/.next/routes-manifest.json +144 -0
- apps/studio/.next/server/app-paths-manifest.json +16 -0
- apps/studio/.next/server/app/_global-error.html +1 -0
- apps/studio/.next/server/app/_global-error.meta +15 -0
- apps/studio/.next/server/app/_global-error.rsc +14 -0
- apps/studio/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +5 -0
- apps/studio/.next/server/app/_global-error.segments/_full.segment.rsc +14 -0
- apps/studio/.next/server/app/_global-error.segments/_head.segment.rsc +5 -0
- apps/studio/.next/server/app/_global-error.segments/_index.segment.rsc +5 -0
- apps/studio/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -0
- apps/studio/.next/server/app/_global-error/page.js +9 -0
- apps/studio/.next/server/app/_global-error/page.js.nft.json +1 -0
- apps/studio/.next/server/app/_global-error/page/app-paths-manifest.json +3 -0
- apps/studio/.next/server/app/_global-error/page/build-manifest.json +16 -0
- apps/studio/.next/server/app/_global-error/page/next-font-manifest.json +6 -0
- apps/studio/.next/server/app/_global-error/page/react-loadable-manifest.json +1 -0
- apps/studio/.next/server/app/_global-error/page/server-reference-manifest.json +4 -0
- apps/studio/.next/server/app/_global-error/page_client-reference-manifest.js +3 -0
- apps/studio/.next/server/app/_not-found.html +1 -0
- apps/studio/.next/server/app/_not-found.meta +16 -0
- apps/studio/.next/server/app/_not-found.rsc +17 -0
- apps/studio/.next/server/app/_not-found.segments/_full.segment.rsc +17 -0
- apps/studio/.next/server/app/_not-found.segments/_head.segment.rsc +5 -0
- apps/studio/.next/server/app/_not-found.segments/_index.segment.rsc +7 -0
- apps/studio/.next/server/app/_not-found.segments/_not-found.segment.rsc +5 -0
- apps/studio/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +5 -0
- apps/studio/.next/server/app/_not-found.segments/_tree.segment.rsc +3 -0
- apps/studio/.next/server/app/_not-found/page.js +12 -0
- apps/studio/.next/server/app/_not-found/page.js.nft.json +1 -0
- apps/studio/.next/server/app/_not-found/page/app-paths-manifest.json +3 -0
- apps/studio/.next/server/app/_not-found/page/build-manifest.json +16 -0
- apps/studio/.next/server/app/_not-found/page/next-font-manifest.json +12 -0
- apps/studio/.next/server/app/_not-found/page/react-loadable-manifest.json +1 -0
- apps/studio/.next/server/app/_not-found/page/server-reference-manifest.json +4 -0
- apps/studio/.next/server/app/_not-found/page_client-reference-manifest.js +3 -0
- apps/studio/.next/server/app/api/audio/proxy/route.js +7 -0
- apps/studio/.next/server/app/api/audio/proxy/route.js.nft.json +1 -0
- apps/studio/.next/server/app/api/audio/proxy/route/app-paths-manifest.json +3 -0
- apps/studio/.next/server/app/api/audio/proxy/route/build-manifest.json +9 -0
- apps/studio/.next/server/app/api/audio/proxy/route/server-reference-manifest.json +4 -0
- apps/studio/.next/server/app/api/audio/proxy/route_client-reference-manifest.js +3 -0
- apps/studio/.next/server/app/api/audio/submit/route.js +7 -0
Dockerfile
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 基础镜像
|
| 2 |
+
FROM node:20-alpine
|
| 3 |
+
|
| 4 |
+
# 设置环境变量
|
| 5 |
+
ENV NODE_ENV=production \
|
| 6 |
+
PORT=7860 \
|
| 7 |
+
HOSTNAME="0.0.0.0"
|
| 8 |
+
|
| 9 |
+
# 创建非 root 用户
|
| 10 |
+
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
|
| 11 |
+
|
| 12 |
+
WORKDIR /app
|
| 13 |
+
|
| 14 |
+
# 复制整个由 GitHub Actions 组装好的目录结构
|
| 15 |
+
# 包含 apps/studio/server.js, apps/studio/public, apps/studio/.next/static 以及 node_modules
|
| 16 |
+
COPY --chown=appuser:appgroup . ./
|
| 17 |
+
|
| 18 |
+
# 切换用户
|
| 19 |
+
USER appuser
|
| 20 |
+
|
| 21 |
+
# 暴露端口
|
| 22 |
+
EXPOSE 7860
|
| 23 |
+
|
| 24 |
+
# 启动命令 - 指向子包内的 server.js
|
| 25 |
+
CMD ["node", "apps/studio/server.js"]
|
README.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Ling Open Studio
|
| 3 |
+
emoji: 🦉
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: green
|
| 6 |
+
sdk: docker
|
| 7 |
+
app_port: 7860
|
| 8 |
+
pinned: false
|
| 9 |
+
license: mit
|
| 10 |
+
tags:
|
| 11 |
+
- web-generation
|
| 12 |
+
- chat
|
| 13 |
+
- writing
|
| 14 |
+
- playground
|
| 15 |
+
- inclusion-ai
|
| 16 |
+
- ling
|
| 17 |
+
- ring
|
| 18 |
+
- ming
|
| 19 |
+
short_description: All-in-one playground for Ling series LLMs
|
| 20 |
+
models:
|
| 21 |
+
- inclusionAI/Ling-flash-2.0
|
| 22 |
+
- inclusionAI/Ling-mini-2.0
|
| 23 |
+
- inclusionAI/Ring-mini-2.0
|
| 24 |
+
- inclusionAI/Ring-flash-2.0
|
| 25 |
+
- inclusionAI/Ling-1T
|
| 26 |
+
- inclusionAI/Ring-1T
|
| 27 |
+
- inclusionAI/Ring-2.5-1T
|
| 28 |
+
- inclusionAI/Ling-2.5-1T
|
| 29 |
+
- inclusionAI/Ling-2.6-1T
|
| 30 |
+
- inclusionAI/Ling-2.6-flash
|
| 31 |
+
- inclusionAI/Ling-2.6-flash-fp8
|
| 32 |
+
- inclusionAI/Ling-2.6-flash-int4
|
| 33 |
+
- inclusionAI/Ring-2.6-1T
|
| 34 |
+
- inclusionAI/Ming-flash-omni-2.0
|
| 35 |
+
---
|
| 36 |
+
|
| 37 |
+
# Ling Open Studio
|
| 38 |
+
|
| 39 |
+
**All-in-one playground for Ling series LLMs.**
|
| 40 |
+
|
| 41 |
+
Ling Open Studio (InclusionAI Demo) is an AI-powered platform designed to showcase the capabilities of the "Ling" series Large Language Models. It provides a unified interface for chat, web generation, and assisted writing.
|
| 42 |
+
|
| 43 |
+
## Features
|
| 44 |
+
|
| 45 |
+
- **Model Chat**: Standard AI conversation interface with streaming support.
|
| 46 |
+
- **Model Web**: Describe what you want and an AI agent generates real-time HTML/React previews.
|
| 47 |
+
- **Model Write**: AI-assisted writing with entity extraction and inspiration recommendation.
|
| 48 |
+
|
| 49 |
+
## Quick Start
|
| 50 |
+
|
| 51 |
+
1. **Deploy**: This Space runs a Dockerized Next.js application in standalone mode.
|
| 52 |
+
2. **Configure**: Ensure you have configured the necessary environment variables (API Keys).
|
| 53 |
+
3. **Interact**: Use the sidebar to switch between different model modes.
|
| 54 |
+
|
| 55 |
+
## Technical Details
|
| 56 |
+
|
| 57 |
+
Built with:
|
| 58 |
+
- **Assistant UI**: For the core chat experience.
|
| 59 |
+
- **LangGraph**: For orchestrating complex agentic workflows.
|
| 60 |
+
- **Next.js 15**: App Router with Standalone output.
|
| 61 |
+
- **Tailwind CSS v4**: For the InclusionAI design system.
|
| 62 |
+
|
| 63 |
+
---
|
| 64 |
+
|
| 65 |
+
*This project is part of the InclusionAI ecosystem.*
|
apps/studio/.next/BUILD_ID
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
jXH55KA2A1AqireLebyO3
|
apps/studio/.next/app-path-routes-manifest.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"/_global-error/page": "/_global-error",
|
| 3 |
+
"/_not-found/page": "/_not-found",
|
| 4 |
+
"/api/audio/proxy/route": "/api/audio/proxy",
|
| 5 |
+
"/api/audio/submit/route": "/api/audio/submit",
|
| 6 |
+
"/api/chat/audio/podcast/route": "/api/chat/audio/podcast",
|
| 7 |
+
"/api/chat/general/route": "/api/chat/general",
|
| 8 |
+
"/api/chat/web/route": "/api/chat/web",
|
| 9 |
+
"/api/chat/write/generate/route": "/api/chat/write/generate",
|
| 10 |
+
"/api/chat/write/precompute/route": "/api/chat/write/precompute",
|
| 11 |
+
"/api/chat/write/predict/route": "/api/chat/write/predict",
|
| 12 |
+
"/api/image/omni/route": "/api/image/omni",
|
| 13 |
+
"/api/naming/route": "/api/naming",
|
| 14 |
+
"/ffmpeg-bridge/page": "/ffmpeg-bridge",
|
| 15 |
+
"/page": "/"
|
| 16 |
+
}
|
apps/studio/.next/build-manifest.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"pages": {
|
| 3 |
+
"/_app": []
|
| 4 |
+
},
|
| 5 |
+
"devFiles": [],
|
| 6 |
+
"polyfillFiles": [
|
| 7 |
+
"static/chunks/03~yq9q893hmn.js"
|
| 8 |
+
],
|
| 9 |
+
"lowPriorityFiles": [
|
| 10 |
+
"static/jXH55KA2A1AqireLebyO3/_buildManifest.js",
|
| 11 |
+
"static/jXH55KA2A1AqireLebyO3/_ssgManifest.js",
|
| 12 |
+
"static/jXH55KA2A1AqireLebyO3/_clientMiddlewareManifest.js"
|
| 13 |
+
],
|
| 14 |
+
"rootMainFiles": [
|
| 15 |
+
"static/chunks/0mjxito_jaf00.js",
|
| 16 |
+
"static/chunks/0~7fpzg4d1wzw.js",
|
| 17 |
+
"static/chunks/10d~v~sj-0316.js",
|
| 18 |
+
"static/chunks/turbopack-0odadm6sqsdgq.js"
|
| 19 |
+
]
|
| 20 |
+
}
|
apps/studio/.next/package.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"type": "commonjs"}
|
apps/studio/.next/prerender-manifest.json
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": 4,
|
| 3 |
+
"routes": {
|
| 4 |
+
"/": {
|
| 5 |
+
"experimentalBypassFor": [
|
| 6 |
+
{
|
| 7 |
+
"type": "header",
|
| 8 |
+
"key": "next-action"
|
| 9 |
+
},
|
| 10 |
+
{
|
| 11 |
+
"type": "header",
|
| 12 |
+
"key": "content-type",
|
| 13 |
+
"value": "multipart/form-data;.*"
|
| 14 |
+
}
|
| 15 |
+
],
|
| 16 |
+
"initialRevalidateSeconds": false,
|
| 17 |
+
"srcRoute": "/",
|
| 18 |
+
"dataRoute": "/index.rsc",
|
| 19 |
+
"allowHeader": [
|
| 20 |
+
"host",
|
| 21 |
+
"x-matched-path",
|
| 22 |
+
"x-prerender-revalidate",
|
| 23 |
+
"x-prerender-revalidate-if-generated",
|
| 24 |
+
"x-next-revalidated-tags",
|
| 25 |
+
"x-next-revalidate-tag-token"
|
| 26 |
+
]
|
| 27 |
+
},
|
| 28 |
+
"/_global-error": {
|
| 29 |
+
"experimentalBypassFor": [
|
| 30 |
+
{
|
| 31 |
+
"type": "header",
|
| 32 |
+
"key": "next-action"
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"type": "header",
|
| 36 |
+
"key": "content-type",
|
| 37 |
+
"value": "multipart/form-data;.*"
|
| 38 |
+
}
|
| 39 |
+
],
|
| 40 |
+
"initialRevalidateSeconds": false,
|
| 41 |
+
"srcRoute": "/_global-error",
|
| 42 |
+
"dataRoute": "/_global-error.rsc",
|
| 43 |
+
"allowHeader": [
|
| 44 |
+
"host",
|
| 45 |
+
"x-matched-path",
|
| 46 |
+
"x-prerender-revalidate",
|
| 47 |
+
"x-prerender-revalidate-if-generated",
|
| 48 |
+
"x-next-revalidated-tags",
|
| 49 |
+
"x-next-revalidate-tag-token"
|
| 50 |
+
]
|
| 51 |
+
},
|
| 52 |
+
"/_not-found": {
|
| 53 |
+
"initialStatus": 404,
|
| 54 |
+
"experimentalBypassFor": [
|
| 55 |
+
{
|
| 56 |
+
"type": "header",
|
| 57 |
+
"key": "next-action"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"type": "header",
|
| 61 |
+
"key": "content-type",
|
| 62 |
+
"value": "multipart/form-data;.*"
|
| 63 |
+
}
|
| 64 |
+
],
|
| 65 |
+
"initialRevalidateSeconds": false,
|
| 66 |
+
"srcRoute": "/_not-found",
|
| 67 |
+
"dataRoute": "/_not-found.rsc",
|
| 68 |
+
"allowHeader": [
|
| 69 |
+
"host",
|
| 70 |
+
"x-matched-path",
|
| 71 |
+
"x-prerender-revalidate",
|
| 72 |
+
"x-prerender-revalidate-if-generated",
|
| 73 |
+
"x-next-revalidated-tags",
|
| 74 |
+
"x-next-revalidate-tag-token"
|
| 75 |
+
]
|
| 76 |
+
},
|
| 77 |
+
"/ffmpeg-bridge": {
|
| 78 |
+
"experimentalBypassFor": [
|
| 79 |
+
{
|
| 80 |
+
"type": "header",
|
| 81 |
+
"key": "next-action"
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"type": "header",
|
| 85 |
+
"key": "content-type",
|
| 86 |
+
"value": "multipart/form-data;.*"
|
| 87 |
+
}
|
| 88 |
+
],
|
| 89 |
+
"initialRevalidateSeconds": false,
|
| 90 |
+
"srcRoute": "/ffmpeg-bridge",
|
| 91 |
+
"dataRoute": "/ffmpeg-bridge.rsc",
|
| 92 |
+
"allowHeader": [
|
| 93 |
+
"host",
|
| 94 |
+
"x-matched-path",
|
| 95 |
+
"x-prerender-revalidate",
|
| 96 |
+
"x-prerender-revalidate-if-generated",
|
| 97 |
+
"x-next-revalidated-tags",
|
| 98 |
+
"x-next-revalidate-tag-token"
|
| 99 |
+
]
|
| 100 |
+
}
|
| 101 |
+
},
|
| 102 |
+
"dynamicRoutes": {},
|
| 103 |
+
"notFoundRoutes": [],
|
| 104 |
+
"preview": {
|
| 105 |
+
"previewModeId": "f5bdeb0fd3c3f31176087f744d544188",
|
| 106 |
+
"previewModeSigningKey": "b9c1a7abcbd340f1418a840dedd69be9a4781ba77fb675e87444f3a75ec2c6b6",
|
| 107 |
+
"previewModeEncryptionKey": "86b9bfa8739375ab13976bf5e8f26443d2647e3866bfd924b30cba05300b8697"
|
| 108 |
+
}
|
| 109 |
+
}
|
apps/studio/.next/required-server-files.json
ADDED
|
@@ -0,0 +1,345 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": 1,
|
| 3 |
+
"config": {
|
| 4 |
+
"env": {},
|
| 5 |
+
"webpack": null,
|
| 6 |
+
"typescript": {
|
| 7 |
+
"ignoreBuildErrors": false
|
| 8 |
+
},
|
| 9 |
+
"typedRoutes": false,
|
| 10 |
+
"distDir": ".next",
|
| 11 |
+
"cleanDistDir": true,
|
| 12 |
+
"assetPrefix": "",
|
| 13 |
+
"cacheMaxMemorySize": 52428800,
|
| 14 |
+
"configOrigin": "next.config.ts",
|
| 15 |
+
"useFileSystemPublicRoutes": true,
|
| 16 |
+
"generateEtags": true,
|
| 17 |
+
"pageExtensions": [
|
| 18 |
+
"tsx",
|
| 19 |
+
"ts",
|
| 20 |
+
"jsx",
|
| 21 |
+
"js"
|
| 22 |
+
],
|
| 23 |
+
"poweredByHeader": true,
|
| 24 |
+
"compress": true,
|
| 25 |
+
"images": {
|
| 26 |
+
"deviceSizes": [
|
| 27 |
+
640,
|
| 28 |
+
750,
|
| 29 |
+
828,
|
| 30 |
+
1080,
|
| 31 |
+
1200,
|
| 32 |
+
1920,
|
| 33 |
+
2048,
|
| 34 |
+
3840
|
| 35 |
+
],
|
| 36 |
+
"imageSizes": [
|
| 37 |
+
32,
|
| 38 |
+
48,
|
| 39 |
+
64,
|
| 40 |
+
96,
|
| 41 |
+
128,
|
| 42 |
+
256,
|
| 43 |
+
384
|
| 44 |
+
],
|
| 45 |
+
"path": "/_next/image",
|
| 46 |
+
"loader": "default",
|
| 47 |
+
"loaderFile": "",
|
| 48 |
+
"domains": [],
|
| 49 |
+
"disableStaticImages": false,
|
| 50 |
+
"minimumCacheTTL": 14400,
|
| 51 |
+
"formats": [
|
| 52 |
+
"image/webp"
|
| 53 |
+
],
|
| 54 |
+
"maximumRedirects": 3,
|
| 55 |
+
"maximumResponseBody": 50000000,
|
| 56 |
+
"dangerouslyAllowLocalIP": false,
|
| 57 |
+
"dangerouslyAllowSVG": false,
|
| 58 |
+
"contentSecurityPolicy": "script-src 'none'; frame-src 'none'; sandbox;",
|
| 59 |
+
"contentDispositionType": "attachment",
|
| 60 |
+
"localPatterns": [
|
| 61 |
+
{
|
| 62 |
+
"pathname": "**",
|
| 63 |
+
"search": ""
|
| 64 |
+
}
|
| 65 |
+
],
|
| 66 |
+
"remotePatterns": [],
|
| 67 |
+
"qualities": [
|
| 68 |
+
75
|
| 69 |
+
],
|
| 70 |
+
"unoptimized": true,
|
| 71 |
+
"customCacheHandler": false
|
| 72 |
+
},
|
| 73 |
+
"devIndicators": {
|
| 74 |
+
"position": "bottom-left"
|
| 75 |
+
},
|
| 76 |
+
"onDemandEntries": {
|
| 77 |
+
"maxInactiveAge": 60000,
|
| 78 |
+
"pagesBufferLength": 5
|
| 79 |
+
},
|
| 80 |
+
"basePath": "",
|
| 81 |
+
"sassOptions": {},
|
| 82 |
+
"trailingSlash": false,
|
| 83 |
+
"i18n": null,
|
| 84 |
+
"productionBrowserSourceMaps": false,
|
| 85 |
+
"excludeDefaultMomentLocales": true,
|
| 86 |
+
"reactProductionProfiling": false,
|
| 87 |
+
"reactStrictMode": null,
|
| 88 |
+
"reactMaxHeadersLength": 6000,
|
| 89 |
+
"httpAgentOptions": {
|
| 90 |
+
"keepAlive": true
|
| 91 |
+
},
|
| 92 |
+
"logging": {
|
| 93 |
+
"serverFunctions": true,
|
| 94 |
+
"browserToTerminal": "warn"
|
| 95 |
+
},
|
| 96 |
+
"compiler": {},
|
| 97 |
+
"expireTime": 31536000,
|
| 98 |
+
"staticPageGenerationTimeout": 60,
|
| 99 |
+
"output": "standalone",
|
| 100 |
+
"modularizeImports": {
|
| 101 |
+
"@mui/icons-material": {
|
| 102 |
+
"transform": "@mui/icons-material/{{member}}"
|
| 103 |
+
},
|
| 104 |
+
"lodash": {
|
| 105 |
+
"transform": "lodash/{{member}}"
|
| 106 |
+
}
|
| 107 |
+
},
|
| 108 |
+
"outputFileTracingRoot": "/home/runner/work/ling-open-studio/ling-open-studio",
|
| 109 |
+
"cacheComponents": false,
|
| 110 |
+
"cacheLife": {
|
| 111 |
+
"default": {
|
| 112 |
+
"stale": 300,
|
| 113 |
+
"revalidate": 900,
|
| 114 |
+
"expire": 4294967294
|
| 115 |
+
},
|
| 116 |
+
"seconds": {
|
| 117 |
+
"stale": 30,
|
| 118 |
+
"revalidate": 1,
|
| 119 |
+
"expire": 60
|
| 120 |
+
},
|
| 121 |
+
"minutes": {
|
| 122 |
+
"stale": 300,
|
| 123 |
+
"revalidate": 60,
|
| 124 |
+
"expire": 3600
|
| 125 |
+
},
|
| 126 |
+
"hours": {
|
| 127 |
+
"stale": 300,
|
| 128 |
+
"revalidate": 3600,
|
| 129 |
+
"expire": 86400
|
| 130 |
+
},
|
| 131 |
+
"days": {
|
| 132 |
+
"stale": 300,
|
| 133 |
+
"revalidate": 86400,
|
| 134 |
+
"expire": 604800
|
| 135 |
+
},
|
| 136 |
+
"weeks": {
|
| 137 |
+
"stale": 300,
|
| 138 |
+
"revalidate": 604800,
|
| 139 |
+
"expire": 2592000
|
| 140 |
+
},
|
| 141 |
+
"max": {
|
| 142 |
+
"stale": 300,
|
| 143 |
+
"revalidate": 2592000,
|
| 144 |
+
"expire": 31536000
|
| 145 |
+
}
|
| 146 |
+
},
|
| 147 |
+
"cacheHandlers": {},
|
| 148 |
+
"experimental": {
|
| 149 |
+
"appNewScrollHandler": false,
|
| 150 |
+
"useSkewCookie": false,
|
| 151 |
+
"cssChunking": true,
|
| 152 |
+
"multiZoneDraftMode": false,
|
| 153 |
+
"appNavFailHandling": false,
|
| 154 |
+
"prerenderEarlyExit": true,
|
| 155 |
+
"serverMinification": true,
|
| 156 |
+
"linkNoTouchStart": false,
|
| 157 |
+
"caseSensitiveRoutes": false,
|
| 158 |
+
"cachedNavigations": false,
|
| 159 |
+
"partialFallbacks": false,
|
| 160 |
+
"dynamicOnHover": false,
|
| 161 |
+
"varyParams": false,
|
| 162 |
+
"prefetchInlining": false,
|
| 163 |
+
"preloadEntriesOnStart": true,
|
| 164 |
+
"clientRouterFilter": true,
|
| 165 |
+
"clientRouterFilterRedirects": false,
|
| 166 |
+
"fetchCacheKeyPrefix": "",
|
| 167 |
+
"proxyPrefetch": "flexible",
|
| 168 |
+
"optimisticClientCache": true,
|
| 169 |
+
"manualClientBasePath": false,
|
| 170 |
+
"cpus": 1,
|
| 171 |
+
"memoryBasedWorkersCount": false,
|
| 172 |
+
"imgOptConcurrency": null,
|
| 173 |
+
"imgOptTimeoutInSeconds": 7,
|
| 174 |
+
"imgOptMaxInputPixels": 268402689,
|
| 175 |
+
"imgOptSequentialRead": null,
|
| 176 |
+
"imgOptSkipMetadata": null,
|
| 177 |
+
"isrFlushToDisk": true,
|
| 178 |
+
"workerThreads": false,
|
| 179 |
+
"optimizeCss": false,
|
| 180 |
+
"nextScriptWorkers": false,
|
| 181 |
+
"scrollRestoration": false,
|
| 182 |
+
"externalDir": false,
|
| 183 |
+
"disableOptimizedLoading": false,
|
| 184 |
+
"gzipSize": true,
|
| 185 |
+
"craCompat": false,
|
| 186 |
+
"esmExternals": true,
|
| 187 |
+
"fullySpecified": false,
|
| 188 |
+
"swcTraceProfiling": false,
|
| 189 |
+
"forceSwcTransforms": false,
|
| 190 |
+
"largePageDataBytes": 128000,
|
| 191 |
+
"typedEnv": false,
|
| 192 |
+
"parallelServerCompiles": false,
|
| 193 |
+
"parallelServerBuildTraces": false,
|
| 194 |
+
"ppr": false,
|
| 195 |
+
"authInterrupts": false,
|
| 196 |
+
"webpackMemoryOptimizations": false,
|
| 197 |
+
"optimizeServerReact": true,
|
| 198 |
+
"strictRouteTypes": false,
|
| 199 |
+
"viewTransition": false,
|
| 200 |
+
"removeUncaughtErrorAndRejectionListeners": false,
|
| 201 |
+
"validateRSCRequestHeaders": false,
|
| 202 |
+
"staleTimes": {
|
| 203 |
+
"dynamic": 0,
|
| 204 |
+
"static": 300
|
| 205 |
+
},
|
| 206 |
+
"reactDebugChannel": true,
|
| 207 |
+
"serverComponentsHmrCache": true,
|
| 208 |
+
"staticGenerationMaxConcurrency": 8,
|
| 209 |
+
"staticGenerationMinPagesPerWorker": 25,
|
| 210 |
+
"transitionIndicator": false,
|
| 211 |
+
"gestureTransition": false,
|
| 212 |
+
"inlineCss": false,
|
| 213 |
+
"useCache": false,
|
| 214 |
+
"globalNotFound": false,
|
| 215 |
+
"browserDebugInfoInTerminal": "warn",
|
| 216 |
+
"lockDistDir": true,
|
| 217 |
+
"proxyClientMaxBodySize": 10485760,
|
| 218 |
+
"hideLogsAfterAbort": false,
|
| 219 |
+
"mcpServer": true,
|
| 220 |
+
"turbopackFileSystemCacheForDev": true,
|
| 221 |
+
"turbopackFileSystemCacheForBuild": false,
|
| 222 |
+
"turbopackInferModuleSideEffects": true,
|
| 223 |
+
"turbopackPluginRuntimeStrategy": "childProcesses",
|
| 224 |
+
"optimizePackageImports": [
|
| 225 |
+
"lucide-react",
|
| 226 |
+
"date-fns",
|
| 227 |
+
"lodash-es",
|
| 228 |
+
"ramda",
|
| 229 |
+
"antd",
|
| 230 |
+
"react-bootstrap",
|
| 231 |
+
"ahooks",
|
| 232 |
+
"@ant-design/icons",
|
| 233 |
+
"@headlessui/react",
|
| 234 |
+
"@headlessui-float/react",
|
| 235 |
+
"@heroicons/react/20/solid",
|
| 236 |
+
"@heroicons/react/24/solid",
|
| 237 |
+
"@heroicons/react/24/outline",
|
| 238 |
+
"@visx/visx",
|
| 239 |
+
"@tremor/react",
|
| 240 |
+
"rxjs",
|
| 241 |
+
"@mui/material",
|
| 242 |
+
"@mui/icons-material",
|
| 243 |
+
"recharts",
|
| 244 |
+
"react-use",
|
| 245 |
+
"effect",
|
| 246 |
+
"@effect/schema",
|
| 247 |
+
"@effect/platform",
|
| 248 |
+
"@effect/platform-node",
|
| 249 |
+
"@effect/platform-browser",
|
| 250 |
+
"@effect/platform-bun",
|
| 251 |
+
"@effect/sql",
|
| 252 |
+
"@effect/sql-mssql",
|
| 253 |
+
"@effect/sql-mysql2",
|
| 254 |
+
"@effect/sql-pg",
|
| 255 |
+
"@effect/sql-sqlite-node",
|
| 256 |
+
"@effect/sql-sqlite-bun",
|
| 257 |
+
"@effect/sql-sqlite-wasm",
|
| 258 |
+
"@effect/sql-sqlite-react-native",
|
| 259 |
+
"@effect/rpc",
|
| 260 |
+
"@effect/rpc-http",
|
| 261 |
+
"@effect/typeclass",
|
| 262 |
+
"@effect/experimental",
|
| 263 |
+
"@effect/opentelemetry",
|
| 264 |
+
"@material-ui/core",
|
| 265 |
+
"@material-ui/icons",
|
| 266 |
+
"@tabler/icons-react",
|
| 267 |
+
"mui-core",
|
| 268 |
+
"react-icons/ai",
|
| 269 |
+
"react-icons/bi",
|
| 270 |
+
"react-icons/bs",
|
| 271 |
+
"react-icons/cg",
|
| 272 |
+
"react-icons/ci",
|
| 273 |
+
"react-icons/di",
|
| 274 |
+
"react-icons/fa",
|
| 275 |
+
"react-icons/fa6",
|
| 276 |
+
"react-icons/fc",
|
| 277 |
+
"react-icons/fi",
|
| 278 |
+
"react-icons/gi",
|
| 279 |
+
"react-icons/go",
|
| 280 |
+
"react-icons/gr",
|
| 281 |
+
"react-icons/hi",
|
| 282 |
+
"react-icons/hi2",
|
| 283 |
+
"react-icons/im",
|
| 284 |
+
"react-icons/io",
|
| 285 |
+
"react-icons/io5",
|
| 286 |
+
"react-icons/lia",
|
| 287 |
+
"react-icons/lib",
|
| 288 |
+
"react-icons/lu",
|
| 289 |
+
"react-icons/md",
|
| 290 |
+
"react-icons/pi",
|
| 291 |
+
"react-icons/ri",
|
| 292 |
+
"react-icons/rx",
|
| 293 |
+
"react-icons/si",
|
| 294 |
+
"react-icons/sl",
|
| 295 |
+
"react-icons/tb",
|
| 296 |
+
"react-icons/tfi",
|
| 297 |
+
"react-icons/ti",
|
| 298 |
+
"react-icons/vsc",
|
| 299 |
+
"react-icons/wi"
|
| 300 |
+
],
|
| 301 |
+
"trustHostHeader": false,
|
| 302 |
+
"isExperimentalCompile": false
|
| 303 |
+
},
|
| 304 |
+
"htmlLimitedBots": "[\\w-]+-Google|Google-[\\w-]+|Chrome-Lighthouse|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|Yeti|googleweblight",
|
| 305 |
+
"bundlePagesRouterDependencies": false,
|
| 306 |
+
"configFileName": "next.config.ts",
|
| 307 |
+
"outputFileTracingExcludes": {
|
| 308 |
+
"*": [
|
| 309 |
+
"node_modules/@swc/core-linux-x64-gnu",
|
| 310 |
+
"node_modules/@swc/core-linux-x64-musl",
|
| 311 |
+
"node_modules/@esbuild",
|
| 312 |
+
"node_modules/webpack",
|
| 313 |
+
"node_modules/terser",
|
| 314 |
+
"node_modules/typescript",
|
| 315 |
+
"node_modules/prettier",
|
| 316 |
+
"node_modules/eslint"
|
| 317 |
+
]
|
| 318 |
+
},
|
| 319 |
+
"turbopack": {
|
| 320 |
+
"root": "/home/runner/work/ling-open-studio/ling-open-studio"
|
| 321 |
+
},
|
| 322 |
+
"distDirRoot": ".next"
|
| 323 |
+
},
|
| 324 |
+
"appDir": "/home/runner/work/ling-open-studio/ling-open-studio/apps/studio",
|
| 325 |
+
"relativeAppDir": "apps/studio",
|
| 326 |
+
"files": [
|
| 327 |
+
".next/routes-manifest.json",
|
| 328 |
+
".next/server/pages-manifest.json",
|
| 329 |
+
".next/build-manifest.json",
|
| 330 |
+
".next/prerender-manifest.json",
|
| 331 |
+
".next/server/functions-config-manifest.json",
|
| 332 |
+
".next/server/middleware-manifest.json",
|
| 333 |
+
".next/server/middleware-build-manifest.js",
|
| 334 |
+
".next/server/app-paths-manifest.json",
|
| 335 |
+
".next/app-path-routes-manifest.json",
|
| 336 |
+
".next/server/server-reference-manifest.js",
|
| 337 |
+
".next/server/server-reference-manifest.json",
|
| 338 |
+
".next/server/prefetch-hints.json",
|
| 339 |
+
".next/BUILD_ID",
|
| 340 |
+
".next/server/next-font-manifest.js",
|
| 341 |
+
".next/server/next-font-manifest.json",
|
| 342 |
+
".next/required-server-files.json"
|
| 343 |
+
],
|
| 344 |
+
"ignore": []
|
| 345 |
+
}
|
apps/studio/.next/routes-manifest.json
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": 3,
|
| 3 |
+
"pages404": true,
|
| 4 |
+
"appType": "app",
|
| 5 |
+
"caseSensitive": false,
|
| 6 |
+
"basePath": "",
|
| 7 |
+
"redirects": [
|
| 8 |
+
{
|
| 9 |
+
"source": "/:path+/",
|
| 10 |
+
"destination": "/:path+",
|
| 11 |
+
"internal": true,
|
| 12 |
+
"priority": true,
|
| 13 |
+
"statusCode": 308,
|
| 14 |
+
"regex": "^(?:/((?:[^/]+?)(?:/(?:[^/]+?))*))/$"
|
| 15 |
+
}
|
| 16 |
+
],
|
| 17 |
+
"headers": [
|
| 18 |
+
{
|
| 19 |
+
"source": "/ffmpeg-bridge",
|
| 20 |
+
"headers": [
|
| 21 |
+
{
|
| 22 |
+
"key": "Cross-Origin-Embedder-Policy",
|
| 23 |
+
"value": "require-corp"
|
| 24 |
+
},
|
| 25 |
+
{
|
| 26 |
+
"key": "Cross-Origin-Opener-Policy",
|
| 27 |
+
"value": "same-origin"
|
| 28 |
+
}
|
| 29 |
+
],
|
| 30 |
+
"regex": "^/ffmpeg-bridge(?:/)?$"
|
| 31 |
+
}
|
| 32 |
+
],
|
| 33 |
+
"onMatchHeaders": [],
|
| 34 |
+
"rewrites": {
|
| 35 |
+
"beforeFiles": [],
|
| 36 |
+
"afterFiles": [],
|
| 37 |
+
"fallback": []
|
| 38 |
+
},
|
| 39 |
+
"dynamicRoutes": [],
|
| 40 |
+
"staticRoutes": [
|
| 41 |
+
{
|
| 42 |
+
"page": "/",
|
| 43 |
+
"regex": "^/(?:/)?$",
|
| 44 |
+
"routeKeys": {},
|
| 45 |
+
"namedRegex": "^/(?:/)?$"
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"page": "/_global-error",
|
| 49 |
+
"regex": "^/_global\\-error(?:/)?$",
|
| 50 |
+
"routeKeys": {},
|
| 51 |
+
"namedRegex": "^/_global\\-error(?:/)?$"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"page": "/_not-found",
|
| 55 |
+
"regex": "^/_not\\-found(?:/)?$",
|
| 56 |
+
"routeKeys": {},
|
| 57 |
+
"namedRegex": "^/_not\\-found(?:/)?$"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"page": "/api/audio/proxy",
|
| 61 |
+
"regex": "^/api/audio/proxy(?:/)?$",
|
| 62 |
+
"routeKeys": {},
|
| 63 |
+
"namedRegex": "^/api/audio/proxy(?:/)?$"
|
| 64 |
+
},
|
| 65 |
+
{
|
| 66 |
+
"page": "/api/audio/submit",
|
| 67 |
+
"regex": "^/api/audio/submit(?:/)?$",
|
| 68 |
+
"routeKeys": {},
|
| 69 |
+
"namedRegex": "^/api/audio/submit(?:/)?$"
|
| 70 |
+
},
|
| 71 |
+
{
|
| 72 |
+
"page": "/api/chat/audio/podcast",
|
| 73 |
+
"regex": "^/api/chat/audio/podcast(?:/)?$",
|
| 74 |
+
"routeKeys": {},
|
| 75 |
+
"namedRegex": "^/api/chat/audio/podcast(?:/)?$"
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"page": "/api/chat/general",
|
| 79 |
+
"regex": "^/api/chat/general(?:/)?$",
|
| 80 |
+
"routeKeys": {},
|
| 81 |
+
"namedRegex": "^/api/chat/general(?:/)?$"
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"page": "/api/chat/web",
|
| 85 |
+
"regex": "^/api/chat/web(?:/)?$",
|
| 86 |
+
"routeKeys": {},
|
| 87 |
+
"namedRegex": "^/api/chat/web(?:/)?$"
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"page": "/api/chat/write/generate",
|
| 91 |
+
"regex": "^/api/chat/write/generate(?:/)?$",
|
| 92 |
+
"routeKeys": {},
|
| 93 |
+
"namedRegex": "^/api/chat/write/generate(?:/)?$"
|
| 94 |
+
},
|
| 95 |
+
{
|
| 96 |
+
"page": "/api/chat/write/precompute",
|
| 97 |
+
"regex": "^/api/chat/write/precompute(?:/)?$",
|
| 98 |
+
"routeKeys": {},
|
| 99 |
+
"namedRegex": "^/api/chat/write/precompute(?:/)?$"
|
| 100 |
+
},
|
| 101 |
+
{
|
| 102 |
+
"page": "/api/chat/write/predict",
|
| 103 |
+
"regex": "^/api/chat/write/predict(?:/)?$",
|
| 104 |
+
"routeKeys": {},
|
| 105 |
+
"namedRegex": "^/api/chat/write/predict(?:/)?$"
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"page": "/api/image/omni",
|
| 109 |
+
"regex": "^/api/image/omni(?:/)?$",
|
| 110 |
+
"routeKeys": {},
|
| 111 |
+
"namedRegex": "^/api/image/omni(?:/)?$"
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"page": "/api/naming",
|
| 115 |
+
"regex": "^/api/naming(?:/)?$",
|
| 116 |
+
"routeKeys": {},
|
| 117 |
+
"namedRegex": "^/api/naming(?:/)?$"
|
| 118 |
+
},
|
| 119 |
+
{
|
| 120 |
+
"page": "/ffmpeg-bridge",
|
| 121 |
+
"regex": "^/ffmpeg\\-bridge(?:/)?$",
|
| 122 |
+
"routeKeys": {},
|
| 123 |
+
"namedRegex": "^/ffmpeg\\-bridge(?:/)?$"
|
| 124 |
+
}
|
| 125 |
+
],
|
| 126 |
+
"dataRoutes": [],
|
| 127 |
+
"rsc": {
|
| 128 |
+
"header": "rsc",
|
| 129 |
+
"varyHeader": "rsc, next-router-state-tree, next-router-prefetch, next-router-segment-prefetch",
|
| 130 |
+
"prefetchHeader": "next-router-prefetch",
|
| 131 |
+
"didPostponeHeader": "x-nextjs-postponed",
|
| 132 |
+
"contentTypeHeader": "text/x-component",
|
| 133 |
+
"suffix": ".rsc",
|
| 134 |
+
"prefetchSegmentHeader": "next-router-segment-prefetch",
|
| 135 |
+
"prefetchSegmentSuffix": ".segment.rsc",
|
| 136 |
+
"prefetchSegmentDirSuffix": ".segments",
|
| 137 |
+
"clientParamParsing": false,
|
| 138 |
+
"dynamicRSCPrerender": false
|
| 139 |
+
},
|
| 140 |
+
"rewriteHeaders": {
|
| 141 |
+
"pathHeader": "x-nextjs-rewritten-path",
|
| 142 |
+
"queryHeader": "x-nextjs-rewritten-query"
|
| 143 |
+
}
|
| 144 |
+
}
|
apps/studio/.next/server/app-paths-manifest.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"/_global-error/page": "app/_global-error/page.js",
|
| 3 |
+
"/_not-found/page": "app/_not-found/page.js",
|
| 4 |
+
"/api/audio/proxy/route": "app/api/audio/proxy/route.js",
|
| 5 |
+
"/api/audio/submit/route": "app/api/audio/submit/route.js",
|
| 6 |
+
"/api/chat/audio/podcast/route": "app/api/chat/audio/podcast/route.js",
|
| 7 |
+
"/api/chat/general/route": "app/api/chat/general/route.js",
|
| 8 |
+
"/api/chat/web/route": "app/api/chat/web/route.js",
|
| 9 |
+
"/api/chat/write/generate/route": "app/api/chat/write/generate/route.js",
|
| 10 |
+
"/api/chat/write/precompute/route": "app/api/chat/write/precompute/route.js",
|
| 11 |
+
"/api/chat/write/predict/route": "app/api/chat/write/predict/route.js",
|
| 12 |
+
"/api/image/omni/route": "app/api/image/omni/route.js",
|
| 13 |
+
"/api/naming/route": "app/api/naming/route.js",
|
| 14 |
+
"/ffmpeg-bridge/page": "app/ffmpeg-bridge/page.js",
|
| 15 |
+
"/page": "app/page.js"
|
| 16 |
+
}
|
apps/studio/.next/server/app/_global-error.html
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/0mjxito_jaf00.js"/><script src="/_next/static/chunks/0~7fpzg4d1wzw.js" async=""></script><script src="/_next/static/chunks/10d~v~sj-0316.js" async=""></script><script src="/_next/static/chunks/turbopack-0odadm6sqsdgq.js" async=""></script><script src="/_next/static/chunks/12lp94j-.c_mt.js" async=""></script><meta name="next-size-adjust" content=""/><title>500: This page couldn’t load</title><style>:root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }</style><script src="/_next/static/chunks/03~yq9q893hmn.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;display:flex;align-items:center;justify-content:center"><div style="margin-top:-32px;max-width:325px;padding:32px 28px;text-align:left"><svg width="32" height="32" viewBox="-0.2 -1.5 32 32" fill="none" style="margin-bottom:24px"><path d="M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z" fill="var(--next-error-title)"></path></svg><h1 style="font-size:24px;font-weight:500;letter-spacing:-0.02em;line-height:32px;margin:0 0 12px 0;color:var(--next-error-title)">This page couldn’t load</h1><p style="font-size:14px;font-weight:400;line-height:21px;margin:0 0 20px 0;color:var(--next-error-message)">A server error occurred. Reload to try again.</p><form style="margin:0"><button type="submit" style="display:inline-flex;align-items:center;justify-content:center;height:32px;padding:0 12px;font-size:14px;font-weight:500;line-height:20px;border-radius:6px;cursor:pointer;color:var(--next-error-btn-text);background:var(--next-error-btn-bg);border:var(--next-error-btn-border)">Reload</button></form></div></div><!--$--><!--/$--><script src="/_next/static/chunks/0mjxito_jaf00.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[339756,[\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"default\"]\n3:I[837457,[\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"default\"]\n4:I[897367,[\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n8:I[897367,[\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"ViewportBoundary\"]\na:I[897367,[\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"MetadataBoundary\"]\nc:I[168027,[\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"default\",1]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"title\",null,{\"children\":\"500: This page couldn’t load\"}],[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }\"}}]]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"display\":\"flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"style\":{\"marginTop\":\"-32px\",\"maxWidth\":\"325px\",\"padding\":\"32px 28px\",\"textAlign\":\"left\"},\"children\":[[\"$\",\"svg\",null,{\"width\":\"32\",\"height\":\"32\",\"viewBox\":\"-0.2 -1.5 32 32\",\"fill\":\"none\",\"style\":{\"marginBottom\":\"24px\"},\"children\":[\"$\",\"path\",null,{\"d\":\"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z\",\"fill\":\"var(--next-error-title)\"}]}],[\"$\",\"h1\",null,{\"style\":{\"fontSize\":\"24px\",\"fontWeight\":500,\"letterSpacing\":\"-0.02em\",\"lineHeight\":\"32px\",\"margin\":\"0 0 12px 0\",\"color\":\"var(--next-error-title)\"},\"children\":\"This page couldn’t load\"}],[\"$\",\"p\",null,{\"style\":{\"fontSize\":\"14px\",\"fontWeight\":400,\"lineHeight\":\"21px\",\"margin\":\"0 0 20px 0\",\"color\":\"var(--next-error-message)\"},\"children\":\"A server error occurred. Reload to try again.\"}],[\"$\",\"form\",null,{\"style\":{\"margin\":0},\"children\":[\"$\",\"button\",null,{\"type\":\"submit\",\"style\":{\"display\":\"inline-flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\",\"height\":\"32px\",\"padding\":\"0 12px\",\"fontSize\":\"14px\",\"fontWeight\":500,\"lineHeight\":\"20px\",\"borderRadius\":\"6px\",\"cursor\":\"pointer\",\"color\":\"var(--next-error-btn-text)\",\"background\":\"var(--next-error-btn-bg)\",\"border\":\"var(--next-error-btn-border)\"},\"children\":\"Reload\"}]}]]}]}]}]]}],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,null]},null,false,\"$@7\"],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"jXH55KA2A1AqireLebyO3\"}\n"])</script><script>self.__next_f.push([1,"d:[]\n7:\"$Wd\"\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"6:null\nb:[]\n"])</script></body></html>
|
apps/studio/.next/server/app/_global-error.meta
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"status": 500,
|
| 3 |
+
"headers": {
|
| 4 |
+
"x-nextjs-stale-time": "300",
|
| 5 |
+
"x-nextjs-prerender": "1",
|
| 6 |
+
"x-next-cache-tags": "_N_T_/layout,_N_T_/_global-error/layout,_N_T_/_global-error/page,_N_T_/_global-error"
|
| 7 |
+
},
|
| 8 |
+
"segmentPaths": [
|
| 9 |
+
"/_tree",
|
| 10 |
+
"/_full",
|
| 11 |
+
"/__PAGE__",
|
| 12 |
+
"/_index",
|
| 13 |
+
"/_head"
|
| 14 |
+
]
|
| 15 |
+
}
|
apps/studio/.next/server/app/_global-error.rsc
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
1:"$Sreact.fragment"
|
| 2 |
+
2:I[339756,["/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 3 |
+
3:I[837457,["/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 4 |
+
4:I[897367,["/_next/static/chunks/12lp94j-.c_mt.js"],"OutletBoundary"]
|
| 5 |
+
5:"$Sreact.suspense"
|
| 6 |
+
8:I[897367,["/_next/static/chunks/12lp94j-.c_mt.js"],"ViewportBoundary"]
|
| 7 |
+
a:I[897367,["/_next/static/chunks/12lp94j-.c_mt.js"],"MetadataBoundary"]
|
| 8 |
+
c:I[168027,["/_next/static/chunks/12lp94j-.c_mt.js"],"default",1]
|
| 9 |
+
0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"jXH55KA2A1AqireLebyO3"}
|
| 10 |
+
d:[]
|
| 11 |
+
7:"$Wd"
|
| 12 |
+
9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
| 13 |
+
6:null
|
| 14 |
+
b:[]
|
apps/studio/.next/server/app/_global-error.segments/__PAGE__.segment.rsc
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
1:"$Sreact.fragment"
|
| 2 |
+
2:I[897367,["/_next/static/chunks/12lp94j-.c_mt.js"],"OutletBoundary"]
|
| 3 |
+
3:"$Sreact.suspense"
|
| 4 |
+
0:{"rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"jXH55KA2A1AqireLebyO3"}
|
| 5 |
+
4:null
|
apps/studio/.next/server/app/_global-error.segments/_full.segment.rsc
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
1:"$Sreact.fragment"
|
| 2 |
+
2:I[339756,["/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 3 |
+
3:I[837457,["/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 4 |
+
4:I[897367,["/_next/static/chunks/12lp94j-.c_mt.js"],"OutletBoundary"]
|
| 5 |
+
5:"$Sreact.suspense"
|
| 6 |
+
8:I[897367,["/_next/static/chunks/12lp94j-.c_mt.js"],"ViewportBoundary"]
|
| 7 |
+
a:I[897367,["/_next/static/chunks/12lp94j-.c_mt.js"],"MetadataBoundary"]
|
| 8 |
+
c:I[168027,["/_next/static/chunks/12lp94j-.c_mt.js"],"default",1]
|
| 9 |
+
0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"jXH55KA2A1AqireLebyO3"}
|
| 10 |
+
d:[]
|
| 11 |
+
7:"$Wd"
|
| 12 |
+
9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
| 13 |
+
6:null
|
| 14 |
+
b:[]
|
apps/studio/.next/server/app/_global-error.segments/_head.segment.rsc
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
1:"$Sreact.fragment"
|
| 2 |
+
2:I[897367,["/_next/static/chunks/12lp94j-.c_mt.js"],"ViewportBoundary"]
|
| 3 |
+
3:I[897367,["/_next/static/chunks/12lp94j-.c_mt.js"],"MetadataBoundary"]
|
| 4 |
+
4:"$Sreact.suspense"
|
| 5 |
+
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"jXH55KA2A1AqireLebyO3"}
|
apps/studio/.next/server/app/_global-error.segments/_index.segment.rsc
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
1:"$Sreact.fragment"
|
| 2 |
+
2:I[339756,["/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 3 |
+
3:I[837457,["/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 4 |
+
4:[]
|
| 5 |
+
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"jXH55KA2A1AqireLebyO3"}
|
apps/studio/.next/server/app/_global-error.segments/_tree.segment.rsc
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
0:{"tree":{"name":"","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"jXH55KA2A1AqireLebyO3"}
|
apps/studio/.next/server/app/_global-error/page.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/_global-error/page.js")
|
| 2 |
+
R.c("server/chunks/ssr/[root-of-the-server]__10xgshr._.js")
|
| 3 |
+
R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0rc3ul_.js")
|
| 4 |
+
R.c("server/chunks/ssr/[root-of-the-server]__0mgphg.._.js")
|
| 5 |
+
R.c("server/chunks/ssr/node_modules_0aem7sr._.js")
|
| 6 |
+
R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js")
|
| 7 |
+
R.c("server/chunks/ssr/apps_studio__next-internal_server_app__global-error_page_actions_0bootdm.js")
|
| 8 |
+
R.m(942378)
|
| 9 |
+
module.exports=R.m(942378).exports
|
apps/studio/.next/server/app/_global-error/page.js.nft.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"version":1,"files":["../../../../../../node_modules/@opentelemetry/api/build/src/api/context.js","../../../../../../node_modules/@opentelemetry/api/build/src/api/diag.js","../../../../../../node_modules/@opentelemetry/api/build/src/api/metrics.js","../../../../../../node_modules/@opentelemetry/api/build/src/api/propagation.js","../../../../../../node_modules/@opentelemetry/api/build/src/api/trace.js","../../../../../../node_modules/@opentelemetry/api/build/src/baggage/context-helpers.js","../../../../../../node_modules/@opentelemetry/api/build/src/baggage/internal/baggage-impl.js","../../../../../../node_modules/@opentelemetry/api/build/src/baggage/internal/symbol.js","../../../../../../node_modules/@opentelemetry/api/build/src/baggage/utils.js","../../../../../../node_modules/@opentelemetry/api/build/src/context-api.js","../../../../../../node_modules/@opentelemetry/api/build/src/context/NoopContextManager.js","../../../../../../node_modules/@opentelemetry/api/build/src/context/context.js","../../../../../../node_modules/@opentelemetry/api/build/src/diag-api.js","../../../../../../node_modules/@opentelemetry/api/build/src/diag/ComponentLogger.js","../../../../../../node_modules/@opentelemetry/api/build/src/diag/consoleLogger.js","../../../../../../node_modules/@opentelemetry/api/build/src/diag/internal/logLevelLogger.js","../../../../../../node_modules/@opentelemetry/api/build/src/diag/types.js","../../../../../../node_modules/@opentelemetry/api/build/src/index.js","../../../../../../node_modules/@opentelemetry/api/build/src/internal/global-utils.js","../../../../../../node_modules/@opentelemetry/api/build/src/internal/semver.js","../../../../../../node_modules/@opentelemetry/api/build/src/metrics-api.js","../../../../../../node_modules/@opentelemetry/api/build/src/metrics/Metric.js","../../../../../../node_modules/@opentelemetry/api/build/src/metrics/NoopMeter.js","../../../../../../node_modules/@opentelemetry/api/build/src/metrics/NoopMeterProvider.js","../../../../../../node_modules/@opentelemetry/api/build/src/platform/index.js","../../../../../../node_modules/@opentelemetry/api/build/src/platform/node/globalThis.js","../../../../../../node_modules/@opentelemetry/api/build/src/platform/node/index.js","../../../../../../node_modules/@opentelemetry/api/build/src/propagation-api.js","../../../../../../node_modules/@opentelemetry/api/build/src/propagation/NoopTextMapPropagator.js","../../../../../../node_modules/@opentelemetry/api/build/src/propagation/TextMapPropagator.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace-api.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/NonRecordingSpan.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/NoopTracer.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/NoopTracerProvider.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/ProxyTracer.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/ProxyTracerProvider.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/SamplingResult.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/context-utils.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/internal/tracestate-impl.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/internal/tracestate-validators.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/internal/utils.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/invalid-span-constants.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/span_kind.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/spancontext-utils.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/status.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/trace_flags.js","../../../../../../node_modules/@opentelemetry/api/build/src/version.js","../../../../../../node_modules/@opentelemetry/api/package.json","../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__0.kd7dh._.js","../../chunks/ssr/[root-of-the-server]__0mgphg.._.js","../../chunks/ssr/[root-of-the-server]__10xgshr._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/apps_studio__next-internal_server_app__global-error_page_actions_0bootdm.js","../../chunks/ssr/node_modules_0aem7sr._.js","../../chunks/ssr/node_modules_next_dist_0qoh8ry._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_global-error_0lgvd_..js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0rc3ul_.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]}
|
apps/studio/.next/server/app/_global-error/page/app-paths-manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"/_global-error/page": "app/_global-error/page.js"
|
| 3 |
+
}
|
apps/studio/.next/server/app/_global-error/page/build-manifest.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"devFiles": [],
|
| 3 |
+
"ampDevFiles": [],
|
| 4 |
+
"polyfillFiles": [
|
| 5 |
+
"static/chunks/03~yq9q893hmn.js"
|
| 6 |
+
],
|
| 7 |
+
"lowPriorityFiles": [],
|
| 8 |
+
"rootMainFiles": [
|
| 9 |
+
"static/chunks/0mjxito_jaf00.js",
|
| 10 |
+
"static/chunks/0~7fpzg4d1wzw.js",
|
| 11 |
+
"static/chunks/10d~v~sj-0316.js",
|
| 12 |
+
"static/chunks/turbopack-0odadm6sqsdgq.js"
|
| 13 |
+
],
|
| 14 |
+
"pages": {},
|
| 15 |
+
"ampFirstPages": []
|
| 16 |
+
}
|
apps/studio/.next/server/app/_global-error/page/next-font-manifest.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"pages": {},
|
| 3 |
+
"app": {},
|
| 4 |
+
"appUsingSizeAdjust": false,
|
| 5 |
+
"pagesUsingSizeAdjust": false
|
| 6 |
+
}
|
apps/studio/.next/server/app/_global-error/page/react-loadable-manifest.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{}
|
apps/studio/.next/server/app/_global-error/page/server-reference-manifest.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"node": {},
|
| 3 |
+
"edge": {}
|
| 4 |
+
}
|
apps/studio/.next/server/app/_global-error/page_client-reference-manifest.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
|
| 2 |
+
globalThis.__RSC_MANIFEST["/_global-error/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":339756,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":339756,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":837457,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":837457,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":347257,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":347257,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":92825,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":768017,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":768017,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":897367,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":897367,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":27201,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js <module evaluation>":{"id":168027,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":168027,"name":"*","chunks":["/_next/static/chunks/12lp94j-.c_mt.js"],"async":false}},"ssrModuleMapping":{"339756":{"*":{"id":802420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0.kd7dh._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"837457":{"*":{"id":324017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0.kd7dh._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"347257":{"*":{"id":877682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0.kd7dh._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"92825":{"*":{"id":697296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0.kd7dh._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"768017":{"*":{"id":861660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0.kd7dh._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"897367":{"*":{"id":990574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0.kd7dh._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"27201":{"*":{"id":660704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0.kd7dh._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"168027":{"*":{"id":340622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0.kd7dh._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"339756":{"*":{"id":926768,"name":"*","chunks":[],"async":false}},"837457":{"*":{"id":517910,"name":"*","chunks":[],"async":false}},"347257":{"*":{"id":292977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":348552,"name":"*","chunks":[],"async":false}},"768017":{"*":{"id":683919,"name":"*","chunks":[],"async":false}},"897367":{"*":{"id":724150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":340771,"name":"*","chunks":[],"async":false}},"168027":{"*":{"id":782509,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/node_modules/next/dist/client/components/builtin/global-error":[]},"entryJSFiles":{"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/12lp94j-.c_mt.js"]}};
|
| 3 |
+
|
apps/studio/.next/server/app/_not-found.html
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/07il.rqe5g2u..css" data-precedence="next"/><link rel="stylesheet" href="/_next/static/chunks/17kbyt30z55sq.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/0mjxito_jaf00.js"/><script src="/_next/static/chunks/0~7fpzg4d1wzw.js" async=""></script><script src="/_next/static/chunks/10d~v~sj-0316.js" async=""></script><script src="/_next/static/chunks/turbopack-0odadm6sqsdgq.js" async=""></script><script src="/_next/static/chunks/07i6bnct3f~6e.js" async=""></script><script src="/_next/static/chunks/12lp94j-.c_mt.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>Ling OpenStudio</title><meta name="description" content="A showcase of ling-series LLM capabilities."/><script src="/_next/static/chunks/03~yq9q893hmn.js" noModule=""></script></head><body class="inter_fe8b9d92-module__LINzvG__variable lora_1ae38320-module__0WfQHW__variable jetbrains_mono_2c330a35-module__w3uxYa__variable antialiased font-sans"><div hidden=""><!--$--><!--/$--></div><script>((a,b,c,d,e,f,g,h)=>{let i=document.documentElement,j=["light","dark"];function k(b){var c;(Array.isArray(a)?a:[a]).forEach(a=>{let c="class"===a,d=c&&f?e.map(a=>f[a]||a):e;c?(i.classList.remove(...d),i.classList.add(f&&f[b]?f[b]:b)):i.setAttribute(a,b)}),c=b,h&&j.includes(c)&&(i.style.colorScheme=c)}if(d)k(d);else try{let a=localStorage.getItem(b)||c,d=g&&"system"===a?window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light":a;k(d)}catch(a){}})("class","theme","system",null,["light","dark"],null,true,true)</script><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/0mjxito_jaf00.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[331328,[\"/_next/static/chunks/07i6bnct3f~6e.js\",\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"ThemeProvider\"]\n3:I[339756,[\"/_next/static/chunks/07i6bnct3f~6e.js\",\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"default\"]\n4:I[837457,[\"/_next/static/chunks/07i6bnct3f~6e.js\",\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"default\"]\n5:I[897367,[\"/_next/static/chunks/07i6bnct3f~6e.js\",\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"OutletBoundary\"]\n6:\"$Sreact.suspense\"\n9:I[897367,[\"/_next/static/chunks/07i6bnct3f~6e.js\",\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"ViewportBoundary\"]\nb:I[897367,[\"/_next/static/chunks/07i6bnct3f~6e.js\",\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"MetadataBoundary\"]\nd:I[168027,[\"/_next/static/chunks/07i6bnct3f~6e.js\",\"/_next/static/chunks/12lp94j-.c_mt.js\"],\"default\",1]\n:HL[\"/_next/static/chunks/07il.rqe5g2u..css\",\"style\"]\n:HL[\"/_next/static/chunks/17kbyt30z55sq.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/07il.rqe5g2u..css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/17kbyt30z55sq.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/07i6bnct3f~6e.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/12lp94j-.c_mt.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"body\",null,{\"className\":\"inter_fe8b9d92-module__LINzvG__variable lora_1ae38320-module__0WfQHW__variable jetbrains_mono_2c330a35-module__w3uxYa__variable antialiased font-sans\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"$L2\",null,{\"attribute\":\"class\",\"defaultTheme\":\"system\",\"enableSystem\":true,\"disableTransitionOnChange\":true,\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L5\",null,{\"children\":[\"$\",\"$6\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@7\"}]}]]}],{},null,false,null]},null,false,\"$@8\"]},null,false,null],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"$6\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lc\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/07il.rqe5g2u..css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/17kbyt30z55sq.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"jXH55KA2A1AqireLebyO3\"}\n"])</script><script>self.__next_f.push([1,"e:[]\n8:\"$We\"\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"7:null\nc:[[\"$\",\"title\",\"0\",{\"children\":\"Ling OpenStudio\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"A showcase of ling-series LLM capabilities.\"}]]\n"])</script></body></html>
|
apps/studio/.next/server/app/_not-found.meta
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"status": 404,
|
| 3 |
+
"headers": {
|
| 4 |
+
"x-nextjs-stale-time": "300",
|
| 5 |
+
"x-nextjs-prerender": "1",
|
| 6 |
+
"x-next-cache-tags": "_N_T_/layout,_N_T_/_not-found/layout,_N_T_/_not-found/page,_N_T_/_not-found"
|
| 7 |
+
},
|
| 8 |
+
"segmentPaths": [
|
| 9 |
+
"/_tree",
|
| 10 |
+
"/_full",
|
| 11 |
+
"/_not-found/__PAGE__",
|
| 12 |
+
"/_not-found",
|
| 13 |
+
"/_index",
|
| 14 |
+
"/_head"
|
| 15 |
+
]
|
| 16 |
+
}
|
apps/studio/.next/server/app/_not-found.rsc
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
1:"$Sreact.fragment"
|
| 2 |
+
2:I[331328,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"ThemeProvider"]
|
| 3 |
+
3:I[339756,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 4 |
+
4:I[837457,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 5 |
+
5:I[897367,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"OutletBoundary"]
|
| 6 |
+
6:"$Sreact.suspense"
|
| 7 |
+
9:I[897367,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"ViewportBoundary"]
|
| 8 |
+
b:I[897367,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"MetadataBoundary"]
|
| 9 |
+
d:I[168027,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"default",1]
|
| 10 |
+
:HL["/_next/static/chunks/07il.rqe5g2u..css","style"]
|
| 11 |
+
:HL["/_next/static/chunks/17kbyt30z55sq.css","style"]
|
| 12 |
+
0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/07il.rqe5g2u..css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/17kbyt30z55sq.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/07i6bnct3f~6e.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/12lp94j-.c_mt.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable lora_1ae38320-module__0WfQHW__variable jetbrains_mono_2c330a35-module__w3uxYa__variable antialiased font-sans","suppressHydrationWarning":true,"children":["$","$L2",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,null]},null,false,"$@8"]},null,false,null],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/07il.rqe5g2u..css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/17kbyt30z55sq.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"jXH55KA2A1AqireLebyO3"}
|
| 13 |
+
e:[]
|
| 14 |
+
8:"$We"
|
| 15 |
+
a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
| 16 |
+
7:null
|
| 17 |
+
c:[["$","title","0",{"children":"Ling OpenStudio"}],["$","meta","1",{"name":"description","content":"A showcase of ling-series LLM capabilities."}]]
|
apps/studio/.next/server/app/_not-found.segments/_full.segment.rsc
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
1:"$Sreact.fragment"
|
| 2 |
+
2:I[331328,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"ThemeProvider"]
|
| 3 |
+
3:I[339756,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 4 |
+
4:I[837457,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 5 |
+
5:I[897367,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"OutletBoundary"]
|
| 6 |
+
6:"$Sreact.suspense"
|
| 7 |
+
9:I[897367,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"ViewportBoundary"]
|
| 8 |
+
b:I[897367,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"MetadataBoundary"]
|
| 9 |
+
d:I[168027,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"default",1]
|
| 10 |
+
:HL["/_next/static/chunks/07il.rqe5g2u..css","style"]
|
| 11 |
+
:HL["/_next/static/chunks/17kbyt30z55sq.css","style"]
|
| 12 |
+
0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/07il.rqe5g2u..css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/17kbyt30z55sq.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/07i6bnct3f~6e.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/12lp94j-.c_mt.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable lora_1ae38320-module__0WfQHW__variable jetbrains_mono_2c330a35-module__w3uxYa__variable antialiased font-sans","suppressHydrationWarning":true,"children":["$","$L2",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,null]},null,false,"$@8"]},null,false,null],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/07il.rqe5g2u..css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/17kbyt30z55sq.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"jXH55KA2A1AqireLebyO3"}
|
| 13 |
+
e:[]
|
| 14 |
+
8:"$We"
|
| 15 |
+
a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
| 16 |
+
7:null
|
| 17 |
+
c:[["$","title","0",{"children":"Ling OpenStudio"}],["$","meta","1",{"name":"description","content":"A showcase of ling-series LLM capabilities."}]]
|
apps/studio/.next/server/app/_not-found.segments/_head.segment.rsc
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
1:"$Sreact.fragment"
|
| 2 |
+
2:I[897367,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"ViewportBoundary"]
|
| 3 |
+
3:I[897367,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"MetadataBoundary"]
|
| 4 |
+
4:"$Sreact.suspense"
|
| 5 |
+
0:{"rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Ling OpenStudio"}],["$","meta","1",{"name":"description","content":"A showcase of ling-series LLM capabilities."}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"jXH55KA2A1AqireLebyO3"}
|
apps/studio/.next/server/app/_not-found.segments/_index.segment.rsc
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
1:"$Sreact.fragment"
|
| 2 |
+
2:I[331328,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"ThemeProvider"]
|
| 3 |
+
3:I[339756,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 4 |
+
4:I[837457,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 5 |
+
:HL["/_next/static/chunks/07il.rqe5g2u..css","style"]
|
| 6 |
+
:HL["/_next/static/chunks/17kbyt30z55sq.css","style"]
|
| 7 |
+
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/07il.rqe5g2u..css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/17kbyt30z55sq.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/07i6bnct3f~6e.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/12lp94j-.c_mt.js","async":true}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"inter_fe8b9d92-module__LINzvG__variable lora_1ae38320-module__0WfQHW__variable jetbrains_mono_2c330a35-module__w3uxYa__variable antialiased font-sans","suppressHydrationWarning":true,"children":["$","$L2",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"jXH55KA2A1AqireLebyO3"}
|
apps/studio/.next/server/app/_not-found.segments/_not-found.segment.rsc
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
1:"$Sreact.fragment"
|
| 2 |
+
2:I[339756,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 3 |
+
3:I[837457,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"default"]
|
| 4 |
+
4:[]
|
| 5 |
+
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"jXH55KA2A1AqireLebyO3"}
|
apps/studio/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
1:"$Sreact.fragment"
|
| 2 |
+
2:I[897367,["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"OutletBoundary"]
|
| 3 |
+
3:"$Sreact.suspense"
|
| 4 |
+
0:{"rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"jXH55KA2A1AqireLebyO3"}
|
| 5 |
+
4:null
|
apps/studio/.next/server/app/_not-found.segments/_tree.segment.rsc
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
:HL["/_next/static/chunks/07il.rqe5g2u..css","style"]
|
| 2 |
+
:HL["/_next/static/chunks/17kbyt30z55sq.css","style"]
|
| 3 |
+
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"/_not-found","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"jXH55KA2A1AqireLebyO3"}
|
apps/studio/.next/server/app/_not-found/page.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
var R=require("../../chunks/ssr/[turbopack]_runtime.js")("server/app/_not-found/page.js")
|
| 2 |
+
R.c("server/chunks/ssr/[root-of-the-server]__0.zquoa._.js")
|
| 3 |
+
R.c("server/chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0i-2yzm.js")
|
| 4 |
+
R.c("server/chunks/ssr/[root-of-the-server]__0mgphg.._.js")
|
| 5 |
+
R.c("server/chunks/ssr/node_modules_0aem7sr._.js")
|
| 6 |
+
R.c("server/chunks/ssr/[root-of-the-server]__0~6qdx9._.js")
|
| 7 |
+
R.c("server/chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js")
|
| 8 |
+
R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js")
|
| 9 |
+
R.c("server/chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js")
|
| 10 |
+
R.c("server/chunks/ssr/apps_studio__next-internal_server_app__not-found_page_actions_09v7g4i.js")
|
| 11 |
+
R.m(384276)
|
| 12 |
+
module.exports=R.m(384276).exports
|
apps/studio/.next/server/app/_not-found/page.js.nft.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"version":1,"files":["../../../../../../node_modules/@opentelemetry/api/build/src/api/context.js","../../../../../../node_modules/@opentelemetry/api/build/src/api/diag.js","../../../../../../node_modules/@opentelemetry/api/build/src/api/metrics.js","../../../../../../node_modules/@opentelemetry/api/build/src/api/propagation.js","../../../../../../node_modules/@opentelemetry/api/build/src/api/trace.js","../../../../../../node_modules/@opentelemetry/api/build/src/baggage/context-helpers.js","../../../../../../node_modules/@opentelemetry/api/build/src/baggage/internal/baggage-impl.js","../../../../../../node_modules/@opentelemetry/api/build/src/baggage/internal/symbol.js","../../../../../../node_modules/@opentelemetry/api/build/src/baggage/utils.js","../../../../../../node_modules/@opentelemetry/api/build/src/context-api.js","../../../../../../node_modules/@opentelemetry/api/build/src/context/NoopContextManager.js","../../../../../../node_modules/@opentelemetry/api/build/src/context/context.js","../../../../../../node_modules/@opentelemetry/api/build/src/diag-api.js","../../../../../../node_modules/@opentelemetry/api/build/src/diag/ComponentLogger.js","../../../../../../node_modules/@opentelemetry/api/build/src/diag/consoleLogger.js","../../../../../../node_modules/@opentelemetry/api/build/src/diag/internal/logLevelLogger.js","../../../../../../node_modules/@opentelemetry/api/build/src/diag/types.js","../../../../../../node_modules/@opentelemetry/api/build/src/index.js","../../../../../../node_modules/@opentelemetry/api/build/src/internal/global-utils.js","../../../../../../node_modules/@opentelemetry/api/build/src/internal/semver.js","../../../../../../node_modules/@opentelemetry/api/build/src/metrics-api.js","../../../../../../node_modules/@opentelemetry/api/build/src/metrics/Metric.js","../../../../../../node_modules/@opentelemetry/api/build/src/metrics/NoopMeter.js","../../../../../../node_modules/@opentelemetry/api/build/src/metrics/NoopMeterProvider.js","../../../../../../node_modules/@opentelemetry/api/build/src/platform/index.js","../../../../../../node_modules/@opentelemetry/api/build/src/platform/node/globalThis.js","../../../../../../node_modules/@opentelemetry/api/build/src/platform/node/index.js","../../../../../../node_modules/@opentelemetry/api/build/src/propagation-api.js","../../../../../../node_modules/@opentelemetry/api/build/src/propagation/NoopTextMapPropagator.js","../../../../../../node_modules/@opentelemetry/api/build/src/propagation/TextMapPropagator.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace-api.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/NonRecordingSpan.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/NoopTracer.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/NoopTracerProvider.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/ProxyTracer.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/ProxyTracerProvider.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/SamplingResult.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/context-utils.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/internal/tracestate-impl.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/internal/tracestate-validators.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/internal/utils.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/invalid-span-constants.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/span_kind.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/spancontext-utils.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/status.js","../../../../../../node_modules/@opentelemetry/api/build/src/trace/trace_flags.js","../../../../../../node_modules/@opentelemetry/api/build/src/version.js","../../../../../../node_modules/@opentelemetry/api/package.json","../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../node_modules/@swc/helpers/package.json","../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../node_modules/next/package.json","../../../../../../node_modules/react/cjs/react.development.js","../../../../../../node_modules/react/cjs/react.production.js","../../../../../../node_modules/react/index.js","../../../../../../node_modules/react/package.json","../../chunks/ssr/[root-of-the-server]__0.zquoa._.js","../../chunks/ssr/[root-of-the-server]__0mgphg.._.js","../../chunks/ssr/[root-of-the-server]__0xsbcdm._.js","../../chunks/ssr/[root-of-the-server]__0~6qdx9._.js","../../chunks/ssr/[turbopack]_runtime.js","../../chunks/ssr/apps_studio__next-internal_server_app__not-found_page_actions_09v7g4i.js","../../chunks/ssr/node_modules_09w7yel._.js","../../chunks/ssr/node_modules_0aem7sr._.js","../../chunks/ssr/node_modules_next_dist_0qoh8ry._.js","../../chunks/ssr/node_modules_next_dist_client_components_0inhx6q._.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_forbidden_0ghu-f7.js","../../chunks/ssr/node_modules_next_dist_client_components_builtin_unauthorized_0cjv-23.js","../../chunks/ssr/node_modules_next_dist_esm_build_templates_app-page_0i-2yzm.js","./page/react-loadable-manifest.json","./page_client-reference-manifest.js"]}
|
apps/studio/.next/server/app/_not-found/page/app-paths-manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"/_not-found/page": "app/_not-found/page.js"
|
| 3 |
+
}
|
apps/studio/.next/server/app/_not-found/page/build-manifest.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"devFiles": [],
|
| 3 |
+
"ampDevFiles": [],
|
| 4 |
+
"polyfillFiles": [
|
| 5 |
+
"static/chunks/03~yq9q893hmn.js"
|
| 6 |
+
],
|
| 7 |
+
"lowPriorityFiles": [],
|
| 8 |
+
"rootMainFiles": [
|
| 9 |
+
"static/chunks/0mjxito_jaf00.js",
|
| 10 |
+
"static/chunks/0~7fpzg4d1wzw.js",
|
| 11 |
+
"static/chunks/10d~v~sj-0316.js",
|
| 12 |
+
"static/chunks/turbopack-0odadm6sqsdgq.js"
|
| 13 |
+
],
|
| 14 |
+
"pages": {},
|
| 15 |
+
"ampFirstPages": []
|
| 16 |
+
}
|
apps/studio/.next/server/app/_not-found/page/next-font-manifest.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"pages": {},
|
| 3 |
+
"app": {
|
| 4 |
+
"[project]/apps/studio/src/app/_not-found/page": [
|
| 5 |
+
"static/media/83afe278b6a6bb3c-s.p.0q-301v4kxxnr.woff2",
|
| 6 |
+
"static/media/8c2eb9ceedecfc8e-s.p.0oeo8epbafgia.woff2",
|
| 7 |
+
"static/media/70bc3e132a0a741e-s.p.1409xf.ylxg8g.woff2"
|
| 8 |
+
]
|
| 9 |
+
},
|
| 10 |
+
"appUsingSizeAdjust": true,
|
| 11 |
+
"pagesUsingSizeAdjust": false
|
| 12 |
+
}
|
apps/studio/.next/server/app/_not-found/page/react-loadable-manifest.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{}
|
apps/studio/.next/server/app/_not-found/page/server-reference-manifest.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"node": {},
|
| 3 |
+
"edge": {}
|
| 4 |
+
}
|
apps/studio/.next/server/app/_not-found/page_client-reference-manifest.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
|
| 2 |
+
globalThis.__RSC_MANIFEST["/_not-found/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":339756,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/layout-router.js":{"id":339756,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":837457,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":837457,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":347257,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-page.js":{"id":347257,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":92825,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/client-segment.js":{"id":92825,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":768017,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":768017,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":897367,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":897367,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":27201,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":27201,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/apps/studio/src/components/providers/theme-provider.tsx <module evaluation>":{"id":331328,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/apps/studio/src/components/providers/theme-provider.tsx":{"id":331328,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js <module evaluation>":{"id":168027,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false},"[project]/node_modules/next/dist/client/components/builtin/global-error.js":{"id":168027,"name":"*","chunks":["/_next/static/chunks/07i6bnct3f~6e.js","/_next/static/chunks/12lp94j-.c_mt.js"],"async":false}},"ssrModuleMapping":{"339756":{"*":{"id":802420,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0xsbcdm._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"837457":{"*":{"id":324017,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0xsbcdm._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"347257":{"*":{"id":877682,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0xsbcdm._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"92825":{"*":{"id":697296,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0xsbcdm._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"768017":{"*":{"id":861660,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0xsbcdm._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"897367":{"*":{"id":990574,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0xsbcdm._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"27201":{"*":{"id":660704,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0xsbcdm._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"331328":{"*":{"id":227475,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0xsbcdm._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js"],"async":false}},"168027":{"*":{"id":340622,"name":"*","chunks":["server/chunks/ssr/[root-of-the-server]__0xsbcdm._.js","server/chunks/ssr/node_modules_next_dist_0qoh8ry._.js","server/chunks/ssr/node_modules_09w7yel._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"339756":{"*":{"id":926768,"name":"*","chunks":[],"async":false}},"837457":{"*":{"id":517910,"name":"*","chunks":[],"async":false}},"347257":{"*":{"id":292977,"name":"*","chunks":[],"async":false}},"92825":{"*":{"id":348552,"name":"*","chunks":[],"async":false}},"768017":{"*":{"id":683919,"name":"*","chunks":[],"async":false}},"897367":{"*":{"id":724150,"name":"*","chunks":[],"async":false}},"27201":{"*":{"id":340771,"name":"*","chunks":[],"async":false}},"331328":{"*":{"id":169993,"name":"*","chunks":[],"async":false}},"168027":{"*":{"id":782509,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/apps/studio/src/app/layout":[{"path":"static/chunks/07il.rqe5g2u..css","inlined":false},{"path":"static/chunks/17kbyt30z55sq.css","inlined":false}],"[project]/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/07il.rqe5g2u..css","inlined":false},{"path":"static/chunks/17kbyt30z55sq.css","inlined":false}]},"entryJSFiles":{"[project]/apps/studio/src/app/layout":["static/chunks/07i6bnct3f~6e.js","static/chunks/12lp94j-.c_mt.js"],"[project]/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/07i6bnct3f~6e.js","static/chunks/12lp94j-.c_mt.js"]}};
|
| 3 |
+
|
apps/studio/.next/server/app/api/audio/proxy/route.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
var R=require("../../../../chunks/[turbopack]_runtime.js")("server/app/api/audio/proxy/route.js")
|
| 2 |
+
R.c("server/chunks/[root-of-the-server]__10cjz_9._.js")
|
| 3 |
+
R.c("server/chunks/[root-of-the-server]__0nil~wi._.js")
|
| 4 |
+
R.c("server/chunks/node_modules_next_04~_e52._.js")
|
| 5 |
+
R.c("server/chunks/apps_studio__next-internal_server_app_api_audio_proxy_route_actions_0j-5i.u.js")
|
| 6 |
+
R.m(69120)
|
| 7 |
+
module.exports=R.m(69120).exports
|
apps/studio/.next/server/app/api/audio/proxy/route.js.nft.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"version":1,"files":["../../../../../../../../node_modules/@opentelemetry/api/build/src/api/context.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/api/diag.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/api/metrics.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/api/propagation.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/api/trace.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/baggage/context-helpers.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/baggage/internal/baggage-impl.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/baggage/internal/symbol.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/baggage/utils.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/context-api.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/context/NoopContextManager.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/context/context.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/diag-api.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/diag/ComponentLogger.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/diag/consoleLogger.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/diag/internal/logLevelLogger.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/diag/types.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/index.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/internal/global-utils.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/internal/semver.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/metrics-api.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/metrics/Metric.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/metrics/NoopMeter.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/metrics/NoopMeterProvider.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/platform/index.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/platform/node/globalThis.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/platform/node/index.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/propagation-api.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/propagation/NoopTextMapPropagator.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/propagation/TextMapPropagator.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace-api.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/NonRecordingSpan.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/NoopTracer.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/NoopTracerProvider.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/ProxyTracer.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/ProxyTracerProvider.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/SamplingResult.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/context-utils.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/internal/tracestate-impl.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/internal/tracestate-validators.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/internal/utils.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/invalid-span-constants.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/span_kind.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/spancontext-utils.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/status.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/trace/trace_flags.js","../../../../../../../../node_modules/@opentelemetry/api/build/src/version.js","../../../../../../../../node_modules/@opentelemetry/api/package.json","../../../../../../../../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../../../../../../../../node_modules/@swc/helpers/package.json","../../../../../../../../node_modules/next/dist/build/adapter/setup-node-env.external.js","../../../../../../../../node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../../node_modules/next/dist/client/components/hooks-server-context.js","../../../../../../../../node_modules/next/dist/client/components/static-generation-bailout.js","../../../../../../../../node_modules/next/dist/client/lib/console.js","../../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../../node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../../../node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../../../node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js","../../../../../../../../node_modules/next/dist/compiled/next-server/app-route-turbo.runtime.prod.js","../../../../../../../../node_modules/next/dist/compiled/source-map/package.json","../../../../../../../../node_modules/next/dist/compiled/source-map/source-map.js","../../../../../../../../node_modules/next/dist/compiled/stacktrace-parser/package.json","../../../../../../../../node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","../../../../../../../../node_modules/next/dist/compiled/ws/index.js","../../../../../../../../node_modules/next/dist/compiled/ws/package.json","../../../../../../../../node_modules/next/dist/lib/client-and-server-references.js","../../../../../../../../node_modules/next/dist/lib/constants.js","../../../../../../../../node_modules/next/dist/lib/framework/boundary-constants.js","../../../../../../../../node_modules/next/dist/lib/interop-default.js","../../../../../../../../node_modules/next/dist/lib/is-error.js","../../../../../../../../node_modules/next/dist/lib/picocolors.js","../../../../../../../../node_modules/next/dist/lib/scheduler.js","../../../../../../../../node_modules/next/dist/lib/semver-noop.js","../../../../../../../../node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../../node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../../node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../../node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../../node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../../../node_modules/next/dist/server/app-render/console-async-storage-instance.js","../../../../../../../../node_modules/next/dist/server/app-render/console-async-storage.external.js","../../../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../../../node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../../../node_modules/next/dist/server/app-render/dynamic-rendering.js","../../../../../../../../node_modules/next/dist/server/app-render/instant-validation/boundary-constants.js","../../../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../../../node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../../../node_modules/next/dist/server/app-render/staged-rendering.js","../../../../../../../../node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../../node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../../node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../../node_modules/next/dist/server/dev/browser-logs/file-logger.js","../../../../../../../../node_modules/next/dist/server/dynamic-rendering-utils.js","../../../../../../../../node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../../../node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../../../node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../../node_modules/next/dist/server/lib/lru-cache.js","../../../../../../../../node_modules/next/dist/server/lib/parse-stack.js","../../../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../../../node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../../../node_modules/next/dist/server/lib/source-maps.js","../../../../../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../../node_modules/next/dist/server/load-manifest.external.js","../../../../../../../../node_modules/next/dist/server/node-environment-baseline.js","../../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-dim.external.js","../../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-exit.js","../../../../../../../../node_modules/next/dist/server/node-environment-extensions/console-file.js","../../../../../../../../node_modules/next/dist/server/node-environment-extensions/date.js","../../../../../../../../node_modules/next/dist/server/node-environment-extensions/error-inspect.js","../../../../../../../../node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js","../../../../../../../../node_modules/next/dist/server/node-environment-extensions/io-utils.js","../../../../../../../../node_modules/next/dist/server/node-environment-extensions/node-crypto.js","../../../../../../../../node_modules/next/dist/server/node-environment-extensions/random.js","../../../../../../../../node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.external.js","../../../../../../../../node_modules/next/dist/server/node-environment-extensions/web-crypto.js","../../../../../../../../node_modules/next/dist/server/node-environment.js","../../../../../../../../node_modules/next/dist/server/node-polyfill-crypto.js","../../../../../../../../node_modules/next/dist/server/patch-error-inspect.js","../../../../../../../../node_modules/next/dist/server/require-hook.js","../../../../../../../../node_modules/next/dist/server/response-cache/types.js","../../../../../../../../node_modules/next/dist/server/runtime-reacts.external.js","../../../../../../../../node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../../../node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../../../node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../../node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","../../../../../../../../node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../../../node_modules/next/dist/shared/lib/promise-with-resolvers.js","../../../../../../../../node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../../../node_modules/next/package.json","../../../../../../../../node_modules/react/cjs/react.development.js","../../../../../../../../node_modules/react/cjs/react.production.js","../../../../../../../../node_modules/react/index.js","../../../../../../../../node_modules/react/package.json","../../../../chunks/[root-of-the-server]__0nil~wi._.js","../../../../chunks/[root-of-the-server]__10cjz_9._.js","../../../../chunks/[turbopack]_runtime.js","../../../../chunks/apps_studio__next-internal_server_app_api_audio_proxy_route_actions_0j-5i.u.js","../../../../chunks/node_modules_next_04~_e52._.js","./route_client-reference-manifest.js"]}
|
apps/studio/.next/server/app/api/audio/proxy/route/app-paths-manifest.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"/api/audio/proxy/route": "app/api/audio/proxy/route.js"
|
| 3 |
+
}
|
apps/studio/.next/server/app/api/audio/proxy/route/build-manifest.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"devFiles": [],
|
| 3 |
+
"ampDevFiles": [],
|
| 4 |
+
"polyfillFiles": [],
|
| 5 |
+
"lowPriorityFiles": [],
|
| 6 |
+
"rootMainFiles": [],
|
| 7 |
+
"pages": {},
|
| 8 |
+
"ampFirstPages": []
|
| 9 |
+
}
|
apps/studio/.next/server/app/api/audio/proxy/route/server-reference-manifest.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"node": {},
|
| 3 |
+
"edge": {}
|
| 4 |
+
}
|
apps/studio/.next/server/app/api/audio/proxy/route_client-reference-manifest.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
|
| 2 |
+
globalThis.__RSC_MANIFEST["/api/audio/proxy/route"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{},"ssrModuleMapping":{},"edgeSSRModuleMapping":{},"rscModuleMapping":{},"edgeRscModuleMapping":{},"entryCSSFiles":{},"entryJSFiles":{}};
|
| 3 |
+
|
apps/studio/.next/server/app/api/audio/submit/route.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
var R=require("../../../../chunks/[turbopack]_runtime.js")("server/app/api/audio/submit/route.js")
|
| 2 |
+
R.c("server/chunks/[root-of-the-server]__12bo.f9._.js")
|
| 3 |
+
R.c("server/chunks/[root-of-the-server]__0nil~wi._.js")
|
| 4 |
+
R.c("server/chunks/node_modules_next_04~_e52._.js")
|
| 5 |
+
R.c("server/chunks/apps_studio__next-internal_server_app_api_audio_submit_route_actions_065btt4.js")
|
| 6 |
+
R.m(794434)
|
| 7 |
+
module.exports=R.m(794434).exports
|