openportal 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +20 -13
- package/package.json +1 -1
- package/web/apps/web/.next/BUILD_ID +1 -1
- package/web/apps/web/.next/build-manifest.json +2 -2
- package/web/apps/web/.next/server/pages/404.html +1 -1
- package/web/apps/web/.next/server/pages/500.html +1 -1
- package/web/apps/web/.next/server/pages/index.html +1 -1
- package/web/apps/web/.next/server/pages/session/[id].html +1 -1
- package/web/apps/web/.next/server/pages/settings.html +1 -1
- /package/web/.next/static/{tLN9VmeMA7TPMM--K4UKW → JANTDVN3WAi1HyGF4sYyu}/_buildManifest.js +0 -0
- /package/web/.next/static/{tLN9VmeMA7TPMM--K4UKW → JANTDVN3WAi1HyGF4sYyu}/_clientMiddlewareManifest.json +0 -0
- /package/web/.next/static/{tLN9VmeMA7TPMM--K4UKW → JANTDVN3WAi1HyGF4sYyu}/_ssgManifest.js +0 -0
package/dist/server.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,KAAK,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAiB9D,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;CACtB;
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,KAAK,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAiB9D,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;CACtB;AA8ED,wBAAsB,cAAc,CAClC,MAAM,EAAE,YAAY,GACnB,OAAO,CAAC,YAAY,GAAG,IAAI,CAAC,CA8E9B;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,YAAY,GAAG,IAAI,CAKtD"}
|
package/dist/server.js
CHANGED
|
@@ -9,26 +9,34 @@ function findWebDirectory() {
|
|
|
9
9
|
const possiblePaths = [
|
|
10
10
|
{
|
|
11
11
|
webDir: resolve(__dirname, "..", "web", "apps", "web"),
|
|
12
|
-
|
|
12
|
+
rootDir: resolve(__dirname, "..", "web"),
|
|
13
13
|
},
|
|
14
14
|
{
|
|
15
15
|
webDir: resolve(__dirname, "..", "web"),
|
|
16
|
-
|
|
16
|
+
rootDir: resolve(__dirname, "..", "web"),
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
19
|
webDir: resolve(__dirname, "..", "..", "web"),
|
|
20
|
-
|
|
20
|
+
rootDir: resolve(__dirname, "..", "..", "web"),
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
23
|
webDir: resolve(__dirname, "..", "..", "..", "apps", "web", ".next", "standalone"),
|
|
24
|
-
|
|
24
|
+
rootDir: resolve(__dirname, "..", "..", "..", "apps", "web", ".next", "standalone"),
|
|
25
25
|
},
|
|
26
26
|
];
|
|
27
|
-
for (const { webDir,
|
|
27
|
+
for (const { webDir, rootDir } of possiblePaths) {
|
|
28
28
|
const serverPath = resolve(webDir, "server.js");
|
|
29
29
|
if (existsSync(serverPath)) {
|
|
30
|
-
const
|
|
31
|
-
|
|
30
|
+
const modulesDirs = new Set();
|
|
31
|
+
const appModulesDir = resolve(webDir, "_modules");
|
|
32
|
+
if (existsSync(appModulesDir)) {
|
|
33
|
+
modulesDirs.add(appModulesDir);
|
|
34
|
+
}
|
|
35
|
+
const rootModulesDir = resolve(rootDir, "_modules");
|
|
36
|
+
if (existsSync(rootModulesDir)) {
|
|
37
|
+
modulesDirs.add(rootModulesDir);
|
|
38
|
+
}
|
|
39
|
+
return { webDir, modulesDirs: [...modulesDirs] };
|
|
32
40
|
}
|
|
33
41
|
}
|
|
34
42
|
return null;
|
|
@@ -54,15 +62,14 @@ export async function startWebServer(config) {
|
|
|
54
62
|
logWarning("Expected to find server.js in the web directory.");
|
|
55
63
|
return null;
|
|
56
64
|
}
|
|
57
|
-
const { webDir,
|
|
58
|
-
|
|
65
|
+
const { webDir, modulesDirs } = result;
|
|
66
|
+
for (const modulesDir of modulesDirs) {
|
|
59
67
|
ensureNodeModulesSymlink(modulesDir);
|
|
60
68
|
}
|
|
61
69
|
log(`Starting web server on port ${config.port}...`);
|
|
62
70
|
const serverPath = resolve(webDir, "server.js");
|
|
63
|
-
const
|
|
64
|
-
|
|
65
|
-
: process.env.NODE_PATH;
|
|
71
|
+
const nodePathEntries = [...modulesDirs, process.env.NODE_PATH].filter(Boolean);
|
|
72
|
+
const nodePathEnv = nodePathEntries.length > 0 ? nodePathEntries.join(delimiter) : undefined;
|
|
66
73
|
const proc = spawn("node", [serverPath], {
|
|
67
74
|
cwd: webDir,
|
|
68
75
|
stdio: ["ignore", "pipe", "pipe"],
|
|
@@ -71,7 +78,7 @@ export async function startWebServer(config) {
|
|
|
71
78
|
PORT: config.port.toString(),
|
|
72
79
|
HOSTNAME: "0.0.0.0",
|
|
73
80
|
NODE_ENV: "production",
|
|
74
|
-
NODE_PATH: nodePathEnv,
|
|
81
|
+
...(nodePathEnv ? { NODE_PATH: nodePathEnv } : {}),
|
|
75
82
|
OPENCODE_SERVER_URL: `http://${config.opencodeHost}:${config.opencodePort}`,
|
|
76
83
|
},
|
|
77
84
|
});
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
JANTDVN3WAi1HyGF4sYyu
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"devFiles": [],
|
|
49
49
|
"polyfillFiles": [],
|
|
50
50
|
"lowPriorityFiles": [
|
|
51
|
-
"static/
|
|
52
|
-
"static/
|
|
51
|
+
"static/JANTDVN3WAi1HyGF4sYyu/_ssgManifest.js",
|
|
52
|
+
"static/JANTDVN3WAi1HyGF4sYyu/_buildManifest.js"
|
|
53
53
|
],
|
|
54
54
|
"rootMainFiles": []
|
|
55
55
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><title data-next-head="">404: This page could not be found</title><link rel="preload" href="/_next/static/chunks/58dfd7eaecc95072.css" as="style"/><link rel="stylesheet" href="/_next/static/chunks/58dfd7eaecc95072.css" data-n-g=""/><noscript data-n-css=""></noscript><script src="/_next/static/chunks/b107f5f34a4187e4.js" defer=""></script><script src="/_next/static/chunks/bd15146d1618bdbf.js" defer=""></script><script src="/_next/static/chunks/8f80b41262ef70b6.js" defer=""></script><script src="/_next/static/chunks/fee6d0ada00c967a.js" defer=""></script><script src="/_next/static/chunks/57a81fb69ac0c6be.js" defer=""></script><script src="/_next/static/chunks/turbopack-e65f135dc5679f88.js" defer=""></script><script src="/_next/static/chunks/3f78b6f3f4b66f36.js" defer=""></script><script src="/_next/static/chunks/turbopack-92c911b9efda2756.js" defer=""></script><script src="/_next/static/
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><title data-next-head="">404: This page could not be found</title><link rel="preload" href="/_next/static/chunks/58dfd7eaecc95072.css" as="style"/><link rel="stylesheet" href="/_next/static/chunks/58dfd7eaecc95072.css" data-n-g=""/><noscript data-n-css=""></noscript><script src="/_next/static/chunks/b107f5f34a4187e4.js" defer=""></script><script src="/_next/static/chunks/bd15146d1618bdbf.js" defer=""></script><script src="/_next/static/chunks/8f80b41262ef70b6.js" defer=""></script><script src="/_next/static/chunks/fee6d0ada00c967a.js" defer=""></script><script src="/_next/static/chunks/57a81fb69ac0c6be.js" defer=""></script><script src="/_next/static/chunks/turbopack-e65f135dc5679f88.js" defer=""></script><script src="/_next/static/chunks/3f78b6f3f4b66f36.js" defer=""></script><script src="/_next/static/chunks/turbopack-92c911b9efda2756.js" defer=""></script><script src="/_next/static/JANTDVN3WAi1HyGF4sYyu/_ssgManifest.js" defer=""></script><script src="/_next/static/JANTDVN3WAi1HyGF4sYyu/_buildManifest.js" defer=""></script></head><body class="antialiased"><div id="__next"><script>((e,i,s,u,m,a,l,h)=>{let d=document.documentElement,w=["light","dark"];function p(n){(Array.isArray(e)?e:[e]).forEach(y=>{let k=y==="class",S=k&&a?m.map(f=>a[f]||f):m;k?(d.classList.remove(...S),d.classList.add(a&&a[n]?a[n]:n)):d.setAttribute(y,n)}),R(n)}function R(n){h&&w.includes(n)&&(d.style.colorScheme=n)}function c(){return window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}if(u)p(u);else try{let n=localStorage.getItem(i)||s,y=l&&n==="system"?c():n;p(y)}catch(n){}})("class","intentui-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="line-height:48px"><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-right:23px;font-size:24px;font-weight:500;vertical-align:top">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">This page could not be found<!-- -->.</h2></div></div></div><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404}},"page":"/_error","query":{},"buildId":"JANTDVN3WAi1HyGF4sYyu","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><title data-next-head="">500: Internal Server Error</title><link rel="preload" href="/_next/static/chunks/58dfd7eaecc95072.css" as="style"/><link rel="stylesheet" href="/_next/static/chunks/58dfd7eaecc95072.css" data-n-g=""/><noscript data-n-css=""></noscript><script src="/_next/static/chunks/b107f5f34a4187e4.js" defer=""></script><script src="/_next/static/chunks/bd15146d1618bdbf.js" defer=""></script><script src="/_next/static/chunks/8f80b41262ef70b6.js" defer=""></script><script src="/_next/static/chunks/fee6d0ada00c967a.js" defer=""></script><script src="/_next/static/chunks/57a81fb69ac0c6be.js" defer=""></script><script src="/_next/static/chunks/turbopack-e65f135dc5679f88.js" defer=""></script><script src="/_next/static/chunks/3f78b6f3f4b66f36.js" defer=""></script><script src="/_next/static/chunks/turbopack-92c911b9efda2756.js" defer=""></script><script src="/_next/static/
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><title data-next-head="">500: Internal Server Error</title><link rel="preload" href="/_next/static/chunks/58dfd7eaecc95072.css" as="style"/><link rel="stylesheet" href="/_next/static/chunks/58dfd7eaecc95072.css" data-n-g=""/><noscript data-n-css=""></noscript><script src="/_next/static/chunks/b107f5f34a4187e4.js" defer=""></script><script src="/_next/static/chunks/bd15146d1618bdbf.js" defer=""></script><script src="/_next/static/chunks/8f80b41262ef70b6.js" defer=""></script><script src="/_next/static/chunks/fee6d0ada00c967a.js" defer=""></script><script src="/_next/static/chunks/57a81fb69ac0c6be.js" defer=""></script><script src="/_next/static/chunks/turbopack-e65f135dc5679f88.js" defer=""></script><script src="/_next/static/chunks/3f78b6f3f4b66f36.js" defer=""></script><script src="/_next/static/chunks/turbopack-92c911b9efda2756.js" defer=""></script><script src="/_next/static/JANTDVN3WAi1HyGF4sYyu/_ssgManifest.js" defer=""></script><script src="/_next/static/JANTDVN3WAi1HyGF4sYyu/_buildManifest.js" defer=""></script></head><body class="antialiased"><div id="__next"><script>((e,i,s,u,m,a,l,h)=>{let d=document.documentElement,w=["light","dark"];function p(n){(Array.isArray(e)?e:[e]).forEach(y=>{let k=y==="class",S=k&&a?m.map(f=>a[f]||f):m;k?(d.classList.remove(...S),d.classList.add(a&&a[n]?a[n]:n)):d.setAttribute(y,n)}),R(n)}function R(n){h&&w.includes(n)&&(d.style.colorScheme=n)}function c(){return window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}if(u)p(u);else try{let n=localStorage.getItem(i)||s,y=l&&n==="system"?c():n;p(y)}catch(n){}})("class","intentui-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="line-height:48px"><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-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error<!-- -->.</h2></div></div></div><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":500}},"page":"/_error","query":{},"buildId":"JANTDVN3WAi1HyGF4sYyu","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><link rel="preload" href="/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/chunks/58dfd7eaecc95072.css" as="style"/><link rel="preload" href="/_next/static/chunks/f9cf9aa757605a0d.css" as="style"/><link rel="stylesheet" href="/_next/static/chunks/58dfd7eaecc95072.css" data-n-g=""/><link rel="stylesheet" href="/_next/static/chunks/f9cf9aa757605a0d.css" data-n-p=""/><noscript data-n-css=""></noscript><script src="/_next/static/chunks/b107f5f34a4187e4.js" defer=""></script><script src="/_next/static/chunks/bd15146d1618bdbf.js" defer=""></script><script src="/_next/static/chunks/8f80b41262ef70b6.js" defer=""></script><script src="/_next/static/chunks/fee6d0ada00c967a.js" defer=""></script><script src="/_next/static/chunks/57a81fb69ac0c6be.js" defer=""></script><script src="/_next/static/chunks/turbopack-e65f135dc5679f88.js" defer=""></script><script src="/_next/static/chunks/665a1ec483189124.js" defer=""></script><script src="/_next/static/chunks/d8f0ad36e12f0fbf.js" defer=""></script><script src="/_next/static/chunks/075bf1844a2a8238.js" defer=""></script><script src="/_next/static/chunks/turbopack-c25d63f359fc1234.js" defer=""></script><script src="/_next/static/
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><link rel="preload" href="/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/chunks/58dfd7eaecc95072.css" as="style"/><link rel="preload" href="/_next/static/chunks/f9cf9aa757605a0d.css" as="style"/><link rel="stylesheet" href="/_next/static/chunks/58dfd7eaecc95072.css" data-n-g=""/><link rel="stylesheet" href="/_next/static/chunks/f9cf9aa757605a0d.css" data-n-p=""/><noscript data-n-css=""></noscript><script src="/_next/static/chunks/b107f5f34a4187e4.js" defer=""></script><script src="/_next/static/chunks/bd15146d1618bdbf.js" defer=""></script><script src="/_next/static/chunks/8f80b41262ef70b6.js" defer=""></script><script src="/_next/static/chunks/fee6d0ada00c967a.js" defer=""></script><script src="/_next/static/chunks/57a81fb69ac0c6be.js" defer=""></script><script src="/_next/static/chunks/turbopack-e65f135dc5679f88.js" defer=""></script><script src="/_next/static/chunks/665a1ec483189124.js" defer=""></script><script src="/_next/static/chunks/d8f0ad36e12f0fbf.js" defer=""></script><script src="/_next/static/chunks/075bf1844a2a8238.js" defer=""></script><script src="/_next/static/chunks/turbopack-c25d63f359fc1234.js" defer=""></script><script src="/_next/static/JANTDVN3WAi1HyGF4sYyu/_ssgManifest.js" defer=""></script><script src="/_next/static/JANTDVN3WAi1HyGF4sYyu/_buildManifest.js" defer=""></script></head><body class="antialiased"><div id="__next"><script>((e,i,s,u,m,a,l,h)=>{let d=document.documentElement,w=["light","dark"];function p(n){(Array.isArray(e)?e:[e]).forEach(y=>{let k=y==="class",S=k&&a?m.map(f=>a[f]||f):m;k?(d.classList.remove(...S),d.classList.add(a&&a[n]?a[n]:n)):d.setAttribute(y,n)}),R(n)}function R(n){h&&w.includes(n)&&(d.style.colorScheme=n)}function c(){return window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}if(u)p(u);else try{let n=localStorage.getItem(i)||s,y=l&&n==="system"?c():n;p(y)}catch(n){}})("class","intentui-theme","system",null,["light","dark"],null,true,true)</script><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{}},"page":"/","query":{},"buildId":"JANTDVN3WAi1HyGF4sYyu","nextExport":true,"autoExport":true,"isFallback":false,"scriptLoader":[]}</script></body></html>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><link rel="preload" href="/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/chunks/58dfd7eaecc95072.css" as="style"/><link rel="preload" href="/_next/static/chunks/f9cf9aa757605a0d.css" as="style"/><link rel="preload" href="/_next/static/chunks/17cfb1b2ce0f096d.css" as="style"/><link rel="stylesheet" href="/_next/static/chunks/58dfd7eaecc95072.css" data-n-g=""/><link rel="stylesheet" href="/_next/static/chunks/f9cf9aa757605a0d.css" data-n-p=""/><link rel="stylesheet" href="/_next/static/chunks/17cfb1b2ce0f096d.css" data-n-p=""/><noscript data-n-css=""></noscript><script src="/_next/static/chunks/b107f5f34a4187e4.js" defer=""></script><script src="/_next/static/chunks/bd15146d1618bdbf.js" defer=""></script><script src="/_next/static/chunks/8f80b41262ef70b6.js" defer=""></script><script src="/_next/static/chunks/fee6d0ada00c967a.js" defer=""></script><script src="/_next/static/chunks/57a81fb69ac0c6be.js" defer=""></script><script src="/_next/static/chunks/turbopack-e65f135dc5679f88.js" defer=""></script><script src="/_next/static/chunks/c59e89dc54c3cae8.js" defer=""></script><script src="/_next/static/chunks/d8f0ad36e12f0fbf.js" defer=""></script><script src="/_next/static/chunks/3ffbbca8f4333a24.js" defer=""></script><script src="/_next/static/chunks/075bf1844a2a8238.js" defer=""></script><script src="/_next/static/chunks/turbopack-a10eb107cf4b4fb7.js" defer=""></script><script src="/_next/static/
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><link rel="preload" href="/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/chunks/58dfd7eaecc95072.css" as="style"/><link rel="preload" href="/_next/static/chunks/f9cf9aa757605a0d.css" as="style"/><link rel="preload" href="/_next/static/chunks/17cfb1b2ce0f096d.css" as="style"/><link rel="stylesheet" href="/_next/static/chunks/58dfd7eaecc95072.css" data-n-g=""/><link rel="stylesheet" href="/_next/static/chunks/f9cf9aa757605a0d.css" data-n-p=""/><link rel="stylesheet" href="/_next/static/chunks/17cfb1b2ce0f096d.css" data-n-p=""/><noscript data-n-css=""></noscript><script src="/_next/static/chunks/b107f5f34a4187e4.js" defer=""></script><script src="/_next/static/chunks/bd15146d1618bdbf.js" defer=""></script><script src="/_next/static/chunks/8f80b41262ef70b6.js" defer=""></script><script src="/_next/static/chunks/fee6d0ada00c967a.js" defer=""></script><script src="/_next/static/chunks/57a81fb69ac0c6be.js" defer=""></script><script src="/_next/static/chunks/turbopack-e65f135dc5679f88.js" defer=""></script><script src="/_next/static/chunks/c59e89dc54c3cae8.js" defer=""></script><script src="/_next/static/chunks/d8f0ad36e12f0fbf.js" defer=""></script><script src="/_next/static/chunks/3ffbbca8f4333a24.js" defer=""></script><script src="/_next/static/chunks/075bf1844a2a8238.js" defer=""></script><script src="/_next/static/chunks/turbopack-a10eb107cf4b4fb7.js" defer=""></script><script src="/_next/static/JANTDVN3WAi1HyGF4sYyu/_buildManifest.js" defer=""></script><script src="/_next/static/JANTDVN3WAi1HyGF4sYyu/_ssgManifest.js" defer=""></script></head><body class="antialiased"><div id="__next"><script>((e,i,s,u,m,a,l,h)=>{let d=document.documentElement,w=["light","dark"];function p(n){(Array.isArray(e)?e:[e]).forEach(y=>{let k=y==="class",S=k&&a?m.map(f=>a[f]||f):m;k?(d.classList.remove(...S),d.classList.add(a&&a[n]?a[n]:n)):d.setAttribute(y,n)}),R(n)}function R(n){h&&w.includes(n)&&(d.style.colorScheme=n)}function c(){return window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}if(u)p(u);else try{let n=localStorage.getItem(i)||s,y=l&&n==="system"?c():n;p(y)}catch(n){}})("class","intentui-theme","system",null,["light","dark"],null,true,true)</script><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{}},"page":"/session/[id]","query":{},"buildId":"JANTDVN3WAi1HyGF4sYyu","nextExport":true,"autoExport":true,"isFallback":false,"scriptLoader":[]}</script></body></html>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><link rel="preload" href="/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/chunks/58dfd7eaecc95072.css" as="style"/><link rel="preload" href="/_next/static/chunks/f9cf9aa757605a0d.css" as="style"/><link rel="stylesheet" href="/_next/static/chunks/58dfd7eaecc95072.css" data-n-g=""/><link rel="stylesheet" href="/_next/static/chunks/f9cf9aa757605a0d.css" data-n-p=""/><noscript data-n-css=""></noscript><script src="/_next/static/chunks/b107f5f34a4187e4.js" defer=""></script><script src="/_next/static/chunks/bd15146d1618bdbf.js" defer=""></script><script src="/_next/static/chunks/8f80b41262ef70b6.js" defer=""></script><script src="/_next/static/chunks/fee6d0ada00c967a.js" defer=""></script><script src="/_next/static/chunks/57a81fb69ac0c6be.js" defer=""></script><script src="/_next/static/chunks/turbopack-e65f135dc5679f88.js" defer=""></script><script src="/_next/static/chunks/9bd4272b69f6c6f2.js" defer=""></script><script src="/_next/static/chunks/f2181a2896b161d3.js" defer=""></script><script src="/_next/static/chunks/turbopack-5bc5d12324421501.js" defer=""></script><script src="/_next/static/
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><link rel="preload" href="/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/><link rel="preload" href="/_next/static/chunks/58dfd7eaecc95072.css" as="style"/><link rel="preload" href="/_next/static/chunks/f9cf9aa757605a0d.css" as="style"/><link rel="stylesheet" href="/_next/static/chunks/58dfd7eaecc95072.css" data-n-g=""/><link rel="stylesheet" href="/_next/static/chunks/f9cf9aa757605a0d.css" data-n-p=""/><noscript data-n-css=""></noscript><script src="/_next/static/chunks/b107f5f34a4187e4.js" defer=""></script><script src="/_next/static/chunks/bd15146d1618bdbf.js" defer=""></script><script src="/_next/static/chunks/8f80b41262ef70b6.js" defer=""></script><script src="/_next/static/chunks/fee6d0ada00c967a.js" defer=""></script><script src="/_next/static/chunks/57a81fb69ac0c6be.js" defer=""></script><script src="/_next/static/chunks/turbopack-e65f135dc5679f88.js" defer=""></script><script src="/_next/static/chunks/9bd4272b69f6c6f2.js" defer=""></script><script src="/_next/static/chunks/f2181a2896b161d3.js" defer=""></script><script src="/_next/static/chunks/turbopack-5bc5d12324421501.js" defer=""></script><script src="/_next/static/JANTDVN3WAi1HyGF4sYyu/_ssgManifest.js" defer=""></script><script src="/_next/static/JANTDVN3WAi1HyGF4sYyu/_buildManifest.js" defer=""></script></head><body class="antialiased"><div id="__next"><script>((e,i,s,u,m,a,l,h)=>{let d=document.documentElement,w=["light","dark"];function p(n){(Array.isArray(e)?e:[e]).forEach(y=>{let k=y==="class",S=k&&a?m.map(f=>a[f]||f):m;k?(d.classList.remove(...S),d.classList.add(a&&a[n]?a[n]:n)):d.setAttribute(y,n)}),R(n)}function R(n){h&&w.includes(n)&&(d.style.colorScheme=n)}function c(){return window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"}if(u)p(u);else try{let n=localStorage.getItem(i)||s,y=l&&n==="system"?c():n;p(y)}catch(n){}})("class","intentui-theme","system",null,["light","dark"],null,true,true)</script><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{}},"page":"/settings","query":{},"buildId":"JANTDVN3WAi1HyGF4sYyu","nextExport":true,"autoExport":true,"isFallback":false,"scriptLoader":[]}</script></body></html>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|