@epic-web/workshop-app 4.16.1 → 4.16.3

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.
@@ -21,7 +21,7 @@ import "@total-typescript/ts-reset";
21
21
  import { execaCommand, execa } from "execa";
22
22
  import { glob } from "glob";
23
23
  import { isGitIgnored, globby } from "globby";
24
- import "chokidar";
24
+ import chokidar from "chokidar";
25
25
  import closeWithGrace from "close-with-grace";
26
26
  import fs$1 from "fs";
27
27
  import { remarkCodeBlocksShiki } from "@kentcdodds/md-temp";
@@ -585,6 +585,27 @@ function uniqueUsers(users) {
585
585
  });
586
586
  }
587
587
  let watcher = global.__change_tracker_watcher__;
588
+ function getWatcher() {
589
+ if (process.env.EPICSHOP_DEPLOYED ?? process.env.EPICSHOP_DISABLE_WATCHER === "true") {
590
+ return null;
591
+ }
592
+ if (watcher) return watcher;
593
+ const workshopRoot2 = process.env.EPICSHOP_CONTEXT_CWD ?? process.cwd();
594
+ watcher = chokidar.watch(workshopRoot2, {
595
+ ignoreInitial: true,
596
+ ignored: [
597
+ "**/.git/**",
598
+ "**/node_modules/**",
599
+ "**/build/**",
600
+ "**/public/build/**",
601
+ "**/playwright-report/**",
602
+ "**/dist/**",
603
+ "**/.cache/**"
604
+ ]
605
+ });
606
+ global.__change_tracker_watcher__ = watcher;
607
+ return watcher;
608
+ }
588
609
  function getOptionalWatcher() {
589
610
  return watcher;
590
611
  }
@@ -1152,12 +1173,22 @@ async function queuedBundleMDX(...args) {
1152
1173
  const result = await queue.add(() => bundleMDX(...args));
1153
1174
  return result;
1154
1175
  }
1155
- z$1.object({
1176
+ const schema = z$1.object({
1156
1177
  NODE_ENV: z$1.enum(["production", "development", "test"]).default("development"),
1157
1178
  EPICSHOP_GITHUB_REPO: z$1.string(),
1158
1179
  EPICSHOP_GITHUB_ROOT: z$1.string(),
1159
1180
  EPICSHOP_CONTEXT_CWD: z$1.string()
1160
1181
  });
1182
+ function init$1() {
1183
+ const parsed = schema.safeParse(process.env);
1184
+ if (!parsed.success) {
1185
+ console.error(
1186
+ "❌ Invalid environment variables:",
1187
+ parsed.error.flatten().fieldErrors
1188
+ );
1189
+ throw new Error("Invalid environment variables");
1190
+ }
1191
+ }
1161
1192
  function getEnv() {
1162
1193
  return {
1163
1194
  MODE: process.env.NODE_ENV,
@@ -1451,6 +1482,7 @@ async function getPkgProp(fullPath, prop, defaultValue) {
1451
1482
  }
1452
1483
  return value ?? defaultValue;
1453
1484
  }
1485
+ let initialized = false;
1454
1486
  const workshopRoot = getWorkshopRoot();
1455
1487
  let packageJson;
1456
1488
  try {
@@ -1591,16 +1623,57 @@ function exists(file) {
1591
1623
  () => false
1592
1624
  );
1593
1625
  }
1594
- function firstToExist(...files) {
1595
- return Promise.all(files.map(exists)).then((results) => {
1596
- const index = results.findIndex(Boolean);
1597
- return index === -1 ? null : files[index];
1598
- });
1626
+ async function firstToExist(...files) {
1627
+ const results = await Promise.all(files.map(exists));
1628
+ const index = results.findIndex(Boolean);
1629
+ return index === -1 ? null : files[index];
1599
1630
  }
1600
1631
  const modifiedTimes = remember(
1601
1632
  "modified_times",
1602
1633
  () => /* @__PURE__ */ new Map()
1603
1634
  );
1635
+ function init() {
1636
+ var _a2;
1637
+ if (initialized) return;
1638
+ initialized = true;
1639
+ try {
1640
+ const { epicshop } = packageJson;
1641
+ let root, repo;
1642
+ if (epicshop.githubRepo) {
1643
+ repo = epicshop.githubRepo;
1644
+ root = `${repo.replace(/\/$/, "")}/tree/main`;
1645
+ } else if (epicshop.githubRoot) {
1646
+ root = epicshop.githubRoot.replace(/\/$/, "");
1647
+ repo = root.replace(/\/(blob|tree)\/.*$/, "");
1648
+ } else {
1649
+ throw new Error(
1650
+ `Please set the URL of your GitHub repo in the "epicshop.githubRepo" property of the package.json.`
1651
+ );
1652
+ }
1653
+ if (!root.includes("/blob/") && !root.includes("/tree/")) {
1654
+ root = `${root.replace(/\/$/, "")}/tree/main`;
1655
+ }
1656
+ process.env.EPICSHOP_GITHUB_REPO = repo;
1657
+ process.env.EPICSHOP_GITHUB_ROOT = root;
1658
+ } catch (error) {
1659
+ throw new Error(
1660
+ `Could not set the EPICSHOP_GITHUB_ROOT environment variable. Please set it to the URL of your GitHub repo in the "epicshop.githubRoot" property of the package.json.`,
1661
+ { cause: error }
1662
+ );
1663
+ }
1664
+ init$1();
1665
+ global.ENV = getEnv();
1666
+ async function handleFileChanges(event, filePath) {
1667
+ const apps = await getApps();
1668
+ for (const app of apps) {
1669
+ if (filePath.startsWith(app.fullPath)) {
1670
+ modifiedTimes.set(app.fullPath, Date.now());
1671
+ break;
1672
+ }
1673
+ }
1674
+ }
1675
+ (_a2 = getWatcher()) == null ? void 0 : _a2.on("all", handleFileChanges);
1676
+ }
1604
1677
  function getForceFresh$1(cacheEntry) {
1605
1678
  if (!cacheEntry) return true;
1606
1679
  const latestModifiedTime = Math.max(...Array.from(modifiedTimes.values()));
@@ -1713,6 +1786,7 @@ async function getApps({
1713
1786
  request,
1714
1787
  forceFresh
1715
1788
  } = {}) {
1789
+ if (!initialized) init();
1716
1790
  const key = "apps";
1717
1791
  const apps = await cachified({
1718
1792
  key,
@@ -3239,7 +3313,7 @@ function useTheme() {
3239
3313
  }
3240
3314
  return requestInfo.session.theme ?? hints.theme;
3241
3315
  }
3242
- const route38 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3316
+ const route39 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3243
3317
  __proto__: null,
3244
3318
  ThemeSwitch,
3245
3319
  action: action$c,
@@ -3779,10 +3853,10 @@ const toastSessionStorage = createCookieSessionStorage({
3779
3853
  secure: process.env.NODE_ENV === "production"
3780
3854
  }
3781
3855
  });
3782
- async function redirectWithToast(url, toast2, init) {
3856
+ async function redirectWithToast(url, toast2, init2) {
3783
3857
  return redirect(url, {
3784
- ...init,
3785
- headers: combineHeaders(init == null ? void 0 : init.headers, await createToastHeaders(toast2))
3858
+ ...init2,
3859
+ headers: combineHeaders(init2 == null ? void 0 : init2.headers, await createToastHeaders(toast2))
3786
3860
  });
3787
3861
  }
3788
3862
  async function createToastHeaders(optionalToast) {
@@ -4464,7 +4538,7 @@ function ProgressToggle({
4464
4538
  )
4465
4539
  ] });
4466
4540
  }
4467
- const route32 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4541
+ const route33 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4468
4542
  __proto__: null,
4469
4543
  ProgressToggle,
4470
4544
  action: action$b,
@@ -5725,7 +5799,7 @@ function isDeepEqual(obj1, obj2) {
5725
5799
  }
5726
5800
  return true;
5727
5801
  }
5728
- const route40 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5802
+ const route41 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
5729
5803
  __proto__: null,
5730
5804
  MuxPlayer,
5731
5805
  action: action$a,
@@ -6797,7 +6871,7 @@ function EditFileOnGitHub({
6797
6871
  );
6798
6872
  }
6799
6873
  const LaunchEditor = ENV.EPICSHOP_DEPLOYED ? LaunchGitHub : LaunchEditorImpl;
6800
- const route27 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6874
+ const route28 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6801
6875
  __proto__: null,
6802
6876
  EditFileOnGitHub,
6803
6877
  LaunchEditor,
@@ -7617,7 +7691,7 @@ async function loader$q({ request }) {
7617
7691
  description: `Your Discord account "${member.displayName}" has been connected!`
7618
7692
  });
7619
7693
  }
7620
- const route25 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7694
+ const route26 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
7621
7695
  __proto__: null,
7622
7696
  getDiscordAuthURL,
7623
7697
  loader: loader$q
@@ -8178,7 +8252,7 @@ function SetAppToPlayground({ appName }) {
8178
8252
  }
8179
8253
  );
8180
8254
  }
8181
- const route34 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8255
+ const route35 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8182
8256
  __proto__: null,
8183
8257
  PlaygroundChooser,
8184
8258
  SetAppToPlayground,
@@ -8380,7 +8454,7 @@ function DiscordRoute() {
8380
8454
  ] }) })
8381
8455
  ] });
8382
8456
  }
8383
- const route15 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8457
+ const route16 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8384
8458
  __proto__: null,
8385
8459
  DiscordCTA,
8386
8460
  default: DiscordRoute,
@@ -8775,7 +8849,7 @@ function AppStarter({ name }) {
8775
8849
  fetcher.state === "idle" ? /* @__PURE__ */ jsx(Button, { type: "submit", name: "intent", value: "start", varient: "mono", children: "Start App" }) : /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Loading, { children: "Starting App" }) })
8776
8850
  ] });
8777
8851
  }
8778
- const route36 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8852
+ const route37 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8779
8853
  __proto__: null,
8780
8854
  AppStarter,
8781
8855
  AppStopper,
@@ -9351,7 +9425,7 @@ function UpdateMdxCache({
9351
9425
  )
9352
9426
  ] });
9353
9427
  }
9354
- const route39 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
9428
+ const route40 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
9355
9429
  __proto__: null,
9356
9430
  UpdateMdxCache,
9357
9431
  action: action$6
@@ -10136,7 +10210,7 @@ function StopTest({
10136
10210
  )
10137
10211
  ] });
10138
10212
  }
10139
- const route37 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
10213
+ const route38 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
10140
10214
  __proto__: null,
10141
10215
  ClearTest,
10142
10216
  StopTest,
@@ -11627,6 +11701,10 @@ const route14 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
11627
11701
  __proto__: null,
11628
11702
  loader: loader$f
11629
11703
  }, Symbol.toStringTag, { value: "Module" }));
11704
+ const route15 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
11705
+ __proto__: null,
11706
+ loader: loader$h
11707
+ }, Symbol.toStringTag, { value: "Module" }));
11630
11708
  const handle$4 = {
11631
11709
  getSitemapEntries: () => [{ route: "/finished" }]
11632
11710
  };
@@ -11779,7 +11857,7 @@ function Survey({
11779
11857
  )
11780
11858
  ] });
11781
11859
  }
11782
- const route16 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
11860
+ const route17 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
11783
11861
  __proto__: null,
11784
11862
  default: ExerciseFinished,
11785
11863
  handle: handle$4,
@@ -11912,7 +11990,7 @@ function Index() {
11912
11990
  function ErrorBoundary() {
11913
11991
  return /* @__PURE__ */ jsx(GeneralErrorBoundary, {});
11914
11992
  }
11915
- const route17 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
11993
+ const route18 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
11916
11994
  __proto__: null,
11917
11995
  ErrorBoundary,
11918
11996
  default: Index,
@@ -12014,7 +12092,7 @@ async function loader$c({ request }) {
12014
12092
  };
12015
12093
  });
12016
12094
  }
12017
- const route28 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12095
+ const route29 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12018
12096
  __proto__: null,
12019
12097
  EventSchema,
12020
12098
  loader: loader$c
@@ -12139,7 +12217,7 @@ function Logo({ className = "" }) {
12139
12217
  }
12140
12218
  );
12141
12219
  }
12142
- const route18 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12220
+ const route19 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12143
12221
  __proto__: null,
12144
12222
  action: action$2,
12145
12223
  default: Login,
@@ -12202,7 +12280,7 @@ function Support() {
12202
12280
  ] })
12203
12281
  ] });
12204
12282
  }
12205
- const route19 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12283
+ const route20 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12206
12284
  __proto__: null,
12207
12285
  default: Support,
12208
12286
  handle: handle$2
@@ -12450,7 +12528,7 @@ function Pinger({
12450
12528
  )
12451
12529
  ] });
12452
12530
  }
12453
- const route20 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12531
+ const route21 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12454
12532
  __proto__: null,
12455
12533
  action: action$1,
12456
12534
  default: AdminLayout,
@@ -12463,7 +12541,7 @@ async function loader$9() {
12463
12541
  const apps = await getApps();
12464
12542
  return json({ apps });
12465
12543
  }
12466
- const route21 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12544
+ const route22 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12467
12545
  __proto__: null,
12468
12546
  loader: loader$9
12469
12547
  }, Symbol.toStringTag, { value: "Module" }));
@@ -12472,7 +12550,7 @@ async function loader$8() {
12472
12550
  const entries = await getAllFileCacheEntries();
12473
12551
  return json({ entries });
12474
12552
  }
12475
- const route22 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12553
+ const route23 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12476
12554
  __proto__: null,
12477
12555
  loader: loader$8
12478
12556
  }, Symbol.toStringTag, { value: "Module" }));
@@ -12484,7 +12562,7 @@ async function loader$7({ request }) {
12484
12562
  { headers: { "Server-Timing": getServerTimeHeader(timings) } }
12485
12563
  );
12486
12564
  }
12487
- const route23 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12565
+ const route24 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12488
12566
  __proto__: null,
12489
12567
  loader: loader$7
12490
12568
  }, Symbol.toStringTag, { value: "Module" }));
@@ -12573,7 +12651,7 @@ function DiffViewer() {
12573
12651
  }
12574
12652
  );
12575
12653
  }
12576
- const route24 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12654
+ const route25 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12577
12655
  __proto__: null,
12578
12656
  default: DiffViewer,
12579
12657
  loader: loader$6
@@ -12586,7 +12664,7 @@ async function loader$5({ request }) {
12586
12664
  { headers: { "Server-Timing": getServerTimeHeader(timings) } }
12587
12665
  );
12588
12666
  }
12589
- const route26 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12667
+ const route27 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12590
12668
  __proto__: null,
12591
12669
  loader: loader$5
12592
12670
  }, Symbol.toStringTag, { value: "Module" }));
@@ -12980,7 +13058,7 @@ function OgLayout({
12980
13058
  }
12981
13059
  );
12982
13060
  }
12983
- const route29 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
13061
+ const route30 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
12984
13062
  __proto__: null,
12985
13063
  loader: loader$4
12986
13064
  }, Symbol.toStringTag, { value: "Module" }));
@@ -13025,7 +13103,7 @@ function Onboarding() {
13025
13103
  /* @__PURE__ */ jsx(Form, { method: "post", className: "pb-4", children: /* @__PURE__ */ jsx(Button, { name: "intent", value: "complete", varient: "primary", children: "I've watched it. Let's go!" }) })
13026
13104
  ] });
13027
13105
  }
13028
- const route30 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
13106
+ const route31 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
13029
13107
  __proto__: null,
13030
13108
  action,
13031
13109
  default: Onboarding,
@@ -13051,7 +13129,7 @@ async function loader$2() {
13051
13129
  }
13052
13130
  return json({ processes, testProcesses: testProcesses2 });
13053
13131
  }
13054
- const route31 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
13132
+ const route32 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
13055
13133
  __proto__: null,
13056
13134
  loader: loader$2
13057
13135
  }, Symbol.toStringTag, { value: "Module" }));
@@ -13060,7 +13138,7 @@ function loader$1({ request }) {
13060
13138
  { type: "sitemap", value: `${getDomainUrl(request)}/sitemap.xml` }
13061
13139
  ]);
13062
13140
  }
13063
- const route33 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
13141
+ const route34 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
13064
13142
  __proto__: null,
13065
13143
  loader: loader$1
13066
13144
  }, Symbol.toStringTag, { value: "Module" }));
@@ -13073,11 +13151,11 @@ async function loader({ request, context }) {
13073
13151
  }
13074
13152
  });
13075
13153
  }
13076
- const route35 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
13154
+ const route36 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
13077
13155
  __proto__: null,
13078
13156
  loader
13079
13157
  }, Symbol.toStringTag, { value: "Module" }));
13080
- const serverManifest = { "entry": { "module": "/assets/entry.client-Cs8lBz8l.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js"], "css": [] }, "routes": { "root": { "id": "root", "parentId": void 0, "path": "", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": true, "module": "/assets/root-BUqeXmeK.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js", "/assets/clsx-B-dksMZM.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/client-hints-DLYDs4RF.js", "/assets/error-boundary-BVTbN8PZ.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-DjzedX4O.js", "/assets/index-yEAxvbDV.js", "/assets/presence-CW1_eiIo.js", "/assets/seo-pBpFCWsy.js"], "css": [] }, "routes/$": { "id": "routes/$", "parentId": "root", "path": "*", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": true, "module": "/assets/_-DYArYM0Z.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/error-boundary-BVTbN8PZ.js"], "css": [] }, "routes/_app+/_layout": { "id": "routes/_app+/_layout", "parentId": "root", "path": void 0, "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/_layout-B789acDk.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/request-info-DHtGM4FI.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-C6ToujzV.js", "/assets/user-CdUDQ7a8.js", "/assets/presence-CW1_eiIo.js", "/assets/progress-BwanvUpB.js", "/assets/index-yEAxvbDV.js"], "css": [] }, "routes/_app+/_exercises+/_layout": { "id": "routes/_app+/_exercises+/_layout", "parentId": "routes/_app+/_layout", "path": void 0, "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/_layout-DLIzcS5v.js", "imports": ["/assets/index-Czg1ruVn.js"], "css": [] }, "routes/_app+/_exercises+/$exerciseNumber": { "id": "routes/_app+/_exercises+/$exerciseNumber", "parentId": "routes/_app+/_exercises+/_layout", "path": ":exerciseNumber", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": true, "module": "/assets/_exerciseNumber-BLQUCLPr.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js", "/assets/clsx-B-dksMZM.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/epic-video-CfelX9-n.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-D6ukHE4T.js", "/assets/mdx-CQW0I4So.js", "/assets/progress-BwanvUpB.js", "/assets/seo-pBpFCWsy.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber": { "id": "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber", "parentId": "routes/_app+/_exercises+/_layout", "path": ":exerciseNumber/:stepNumber", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": true, "module": "/assets/_exerciseNumber_._stepNumber-Ct5BCuA1.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js"], "css": [] }, "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber.$type+/_layout": { "id": "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber.$type+/_layout", "parentId": "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber", "path": ":type", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": true, "module": "/assets/_layout-DMuKczTu.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/request-info-DHtGM4FI.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/epic-video-CfelX9-n.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-C6ToujzV.js", "/assets/mdx-CQW0I4So.js", "/assets/index-D6ukHE4T.js", "/assets/diff-4FQLirNf.js", "/assets/error-boundary-BVTbN8PZ.js", "/assets/nav-chevrons-DaXg0NPS.js", "/assets/progress-BwanvUpB.js", "/assets/seo-pBpFCWsy.js", "/assets/discord-BgaWmFRC.js", "/assets/index-DjzedX4O.js", "/assets/button-BA3iiLRs.js", "/assets/use-event-source-ySol3hbz.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber.index": { "id": "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber.index", "parentId": "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber", "path": void 0, "index": true, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/_exerciseNumber_._stepNumber.index-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/_exercises+/$exerciseNumber_.finished": { "id": "routes/_app+/_exercises+/$exerciseNumber_.finished", "parentId": "routes/_app+/_exercises+/_layout", "path": ":exerciseNumber/finished", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/_exerciseNumber_.finished-C9TSc48F.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js", "/assets/clsx-B-dksMZM.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/epic-video-CfelX9-n.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-D6ukHE4T.js", "/assets/nav-chevrons-DaXg0NPS.js", "/assets/mdx-CQW0I4So.js", "/assets/progress-BwanvUpB.js", "/assets/seo-pBpFCWsy.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/_app+/account": { "id": "routes/_app+/account", "parentId": "routes/_app+/_layout", "path": "account", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/account-LnI_Eq0t.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/button-BA3iiLRs.js", "/assets/tooltip-BtzSIxlB.js", "/assets/user-CdUDQ7a8.js", "/assets/presence-CW1_eiIo.js"], "css": [] }, "routes/_app+/app.$appName+/$": { "id": "routes/_app+/app.$appName+/$", "parentId": "routes/_app+/_layout", "path": "app/:appName/*", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/_-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/app.$appName+/api.$": { "id": "routes/_app+/app.$appName+/api.$", "parentId": "routes/_app+/_layout", "path": "app/:appName/api/*", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/api._-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/app.$appName+/epic_ws[.js]": { "id": "routes/_app+/app.$appName+/epic_ws[.js]", "parentId": "routes/_app+/_layout", "path": "app/:appName/epic_ws.js", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/epic_ws_.js_-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/app.$appName+/index": { "id": "routes/_app+/app.$appName+/index", "parentId": "routes/_app+/_layout", "path": "app/:appName/", "index": true, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/index-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/app.$appName+/test.$testName": { "id": "routes/_app+/app.$appName+/test.$testName", "parentId": "routes/_app+/_layout", "path": "app/:appName/test/:testName", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/test._testName-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/discord": { "id": "routes/_app+/discord", "parentId": "routes/_app+/_layout", "path": "discord", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/discord-Dk1wbXOn.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/user-CdUDQ7a8.js", "/assets/discord-BgaWmFRC.js"], "css": [] }, "routes/_app+/finished": { "id": "routes/_app+/finished", "parentId": "routes/_app+/_layout", "path": "finished", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/finished-C0mN8TiU.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js", "/assets/clsx-B-dksMZM.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/epic-video-CfelX9-n.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-D6ukHE4T.js", "/assets/nav-chevrons-DaXg0NPS.js", "/assets/mdx-CQW0I4So.js", "/assets/seo-pBpFCWsy.js", "/assets/progress-BwanvUpB.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/_app+/index": { "id": "routes/_app+/index", "parentId": "routes/_app+/_layout", "path": void 0, "index": true, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": true, "module": "/assets/index-De7yI02n.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js", "/assets/clsx-B-dksMZM.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/epic-video-CfelX9-n.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-D6ukHE4T.js", "/assets/error-boundary-BVTbN8PZ.js", "/assets/mdx-CQW0I4So.js", "/assets/progress-BwanvUpB.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/_app+/login": { "id": "routes/_app+/login", "parentId": "routes/_app+/_layout", "path": "login", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/login-SJlLMYmL.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/request-info-DHtGM4FI.js", "/assets/client-hints-DLYDs4RF.js", "/assets/use-event-source-ySol3hbz.js", "/assets/button-BA3iiLRs.js", "/assets/loading-B0uKxERz.js"], "css": [] }, "routes/_app+/support": { "id": "routes/_app+/support", "parentId": "routes/_app+/_layout", "path": "support", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/support-DilzTPHE.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js"], "css": [] }, "routes/admin+/_layout": { "id": "routes/admin+/_layout", "parentId": "root", "path": "admin", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/_layout-CZ3fjUvs.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/progress-BwanvUpB.js"], "css": [] }, "routes/admin+/apps": { "id": "routes/admin+/apps", "parentId": "routes/admin+/_layout", "path": "apps", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/apps-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/admin+/cache": { "id": "routes/admin+/cache", "parentId": "routes/admin+/_layout", "path": "cache", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/cache-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/apps": { "id": "routes/apps", "parentId": "root", "path": "apps", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/apps-DP2rzg_V.js", "imports": [], "css": [] }, "routes/diff": { "id": "routes/diff", "parentId": "root", "path": "diff", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/diff-CPrD1rHd.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/request-info-DHtGM4FI.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/epic-video-CfelX9-n.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-C6ToujzV.js", "/assets/mdx-CQW0I4So.js", "/assets/diff-4FQLirNf.js", "/assets/nav-chevrons-DaXg0NPS.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/discord.callback": { "id": "routes/discord.callback", "parentId": "root", "path": "discord/callback", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/discord.callback-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/exercises": { "id": "routes/exercises", "parentId": "root", "path": "exercises", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/exercises-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/launch-editor": { "id": "routes/launch-editor", "parentId": "root", "path": "launch-editor", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/launch-editor-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/login-sse": { "id": "routes/login-sse", "parentId": "root", "path": "login-sse", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/login-sse-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/og": { "id": "routes/og", "parentId": "root", "path": "og", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/og-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/onboarding": { "id": "routes/onboarding", "parentId": "root", "path": "onboarding", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/onboarding-BXGyEPXy.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/button-BA3iiLRs.js", "/assets/epic-video-CfelX9-n.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/processes": { "id": "routes/processes", "parentId": "root", "path": "processes", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/processes-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/progress": { "id": "routes/progress", "parentId": "root", "path": "progress", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/progress-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/robots[.]txt": { "id": "routes/robots[.]txt", "parentId": "root", "path": "robots.txt", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/robots_._txt-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/set-playground": { "id": "routes/set-playground", "parentId": "root", "path": "set-playground", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/set-playground-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/sitemap[.]xml": { "id": "routes/sitemap[.]xml", "parentId": "root", "path": "sitemap.xml", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/sitemap_._xml-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/start": { "id": "routes/start", "parentId": "root", "path": "start", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/start-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/test": { "id": "routes/test", "parentId": "root", "path": "test", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/test-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/theme/index": { "id": "routes/theme/index", "parentId": "root", "path": "theme", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/index-DP2rzg_V.js", "imports": [], "css": [] }, "routes/update-mdx-cache": { "id": "routes/update-mdx-cache", "parentId": "root", "path": "update-mdx-cache", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/update-mdx-cache-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/video-player/index": { "id": "routes/video-player/index", "parentId": "root", "path": "video-player", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/index-K6Dvbx-E.js", "imports": [], "css": [] } }, "url": "/assets/manifest-a24c7823.js", "version": "a24c7823" };
13158
+ const serverManifest = { "entry": { "module": "/assets/entry.client-Cs8lBz8l.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js"], "css": [] }, "routes": { "root": { "id": "root", "parentId": void 0, "path": "", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": true, "module": "/assets/root-BUqeXmeK.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js", "/assets/clsx-B-dksMZM.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/client-hints-DLYDs4RF.js", "/assets/error-boundary-BVTbN8PZ.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-DjzedX4O.js", "/assets/index-yEAxvbDV.js", "/assets/presence-CW1_eiIo.js", "/assets/seo-pBpFCWsy.js"], "css": [] }, "routes/$": { "id": "routes/$", "parentId": "root", "path": "*", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": true, "module": "/assets/_-DYArYM0Z.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/error-boundary-BVTbN8PZ.js"], "css": [] }, "routes/_app+/_layout": { "id": "routes/_app+/_layout", "parentId": "root", "path": void 0, "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/_layout-B789acDk.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/request-info-DHtGM4FI.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-C6ToujzV.js", "/assets/user-CdUDQ7a8.js", "/assets/presence-CW1_eiIo.js", "/assets/progress-BwanvUpB.js", "/assets/index-yEAxvbDV.js"], "css": [] }, "routes/_app+/_exercises+/_layout": { "id": "routes/_app+/_exercises+/_layout", "parentId": "routes/_app+/_layout", "path": void 0, "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/_layout-DLIzcS5v.js", "imports": ["/assets/index-Czg1ruVn.js"], "css": [] }, "routes/_app+/_exercises+/$exerciseNumber": { "id": "routes/_app+/_exercises+/$exerciseNumber", "parentId": "routes/_app+/_exercises+/_layout", "path": ":exerciseNumber", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": true, "module": "/assets/_exerciseNumber-BLQUCLPr.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js", "/assets/clsx-B-dksMZM.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/epic-video-CfelX9-n.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-D6ukHE4T.js", "/assets/mdx-CQW0I4So.js", "/assets/progress-BwanvUpB.js", "/assets/seo-pBpFCWsy.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber": { "id": "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber", "parentId": "routes/_app+/_exercises+/_layout", "path": ":exerciseNumber/:stepNumber", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": true, "module": "/assets/_exerciseNumber_._stepNumber-Ct5BCuA1.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js"], "css": [] }, "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber.$type+/_layout": { "id": "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber.$type+/_layout", "parentId": "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber", "path": ":type", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": true, "module": "/assets/_layout-DMuKczTu.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/request-info-DHtGM4FI.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/epic-video-CfelX9-n.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-C6ToujzV.js", "/assets/mdx-CQW0I4So.js", "/assets/index-D6ukHE4T.js", "/assets/diff-4FQLirNf.js", "/assets/error-boundary-BVTbN8PZ.js", "/assets/nav-chevrons-DaXg0NPS.js", "/assets/progress-BwanvUpB.js", "/assets/seo-pBpFCWsy.js", "/assets/discord-BgaWmFRC.js", "/assets/index-DjzedX4O.js", "/assets/button-BA3iiLRs.js", "/assets/use-event-source-ySol3hbz.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber.index": { "id": "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber.index", "parentId": "routes/_app+/_exercises+/$exerciseNumber_.$stepNumber", "path": void 0, "index": true, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/_exerciseNumber_._stepNumber.index-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/_exercises+/$exerciseNumber_.finished": { "id": "routes/_app+/_exercises+/$exerciseNumber_.finished", "parentId": "routes/_app+/_exercises+/_layout", "path": ":exerciseNumber/finished", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/_exerciseNumber_.finished-C9TSc48F.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js", "/assets/clsx-B-dksMZM.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/epic-video-CfelX9-n.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-D6ukHE4T.js", "/assets/nav-chevrons-DaXg0NPS.js", "/assets/mdx-CQW0I4So.js", "/assets/progress-BwanvUpB.js", "/assets/seo-pBpFCWsy.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/_app+/account": { "id": "routes/_app+/account", "parentId": "routes/_app+/_layout", "path": "account", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/account-LnI_Eq0t.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/button-BA3iiLRs.js", "/assets/tooltip-BtzSIxlB.js", "/assets/user-CdUDQ7a8.js", "/assets/presence-CW1_eiIo.js"], "css": [] }, "routes/_app+/app.$appName+/$": { "id": "routes/_app+/app.$appName+/$", "parentId": "routes/_app+/_layout", "path": "app/:appName/*", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/_-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/app.$appName+/api.$": { "id": "routes/_app+/app.$appName+/api.$", "parentId": "routes/_app+/_layout", "path": "app/:appName/api/*", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/api._-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/app.$appName+/epic_ws[.js]": { "id": "routes/_app+/app.$appName+/epic_ws[.js]", "parentId": "routes/_app+/_layout", "path": "app/:appName/epic_ws.js", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/epic_ws_.js_-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/app.$appName+/index": { "id": "routes/_app+/app.$appName+/index", "parentId": "routes/_app+/_layout", "path": "app/:appName/", "index": true, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/index-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/app.$appName+/test.$testName": { "id": "routes/_app+/app.$appName+/test.$testName", "parentId": "routes/_app+/_layout", "path": "app/:appName/test/:testName", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/test._testName-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/app.$appName+/test.epic_ws[.js]": { "id": "routes/_app+/app.$appName+/test.epic_ws[.js]", "parentId": "routes/_app+/_layout", "path": "app/:appName/test/epic_ws.js", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/test.epic_ws_.js_-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/_app+/discord": { "id": "routes/_app+/discord", "parentId": "routes/_app+/_layout", "path": "discord", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/discord-Dk1wbXOn.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/user-CdUDQ7a8.js", "/assets/discord-BgaWmFRC.js"], "css": [] }, "routes/_app+/finished": { "id": "routes/_app+/finished", "parentId": "routes/_app+/_layout", "path": "finished", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/finished-C0mN8TiU.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js", "/assets/clsx-B-dksMZM.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/epic-video-CfelX9-n.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-D6ukHE4T.js", "/assets/nav-chevrons-DaXg0NPS.js", "/assets/mdx-CQW0I4So.js", "/assets/seo-pBpFCWsy.js", "/assets/progress-BwanvUpB.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/_app+/index": { "id": "routes/_app+/index", "parentId": "routes/_app+/_layout", "path": void 0, "index": true, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": true, "module": "/assets/index-De7yI02n.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js", "/assets/clsx-B-dksMZM.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/epic-video-CfelX9-n.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-D6ukHE4T.js", "/assets/error-boundary-BVTbN8PZ.js", "/assets/mdx-CQW0I4So.js", "/assets/progress-BwanvUpB.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/_app+/login": { "id": "routes/_app+/login", "parentId": "routes/_app+/_layout", "path": "login", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/login-SJlLMYmL.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/request-info-DHtGM4FI.js", "/assets/client-hints-DLYDs4RF.js", "/assets/use-event-source-ySol3hbz.js", "/assets/button-BA3iiLRs.js", "/assets/loading-B0uKxERz.js"], "css": [] }, "routes/_app+/support": { "id": "routes/_app+/support", "parentId": "routes/_app+/_layout", "path": "support", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/support-DilzTPHE.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/components-wgHiPsTg.js"], "css": [] }, "routes/admin+/_layout": { "id": "routes/admin+/_layout", "parentId": "root", "path": "admin", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/_layout-CZ3fjUvs.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/progress-BwanvUpB.js"], "css": [] }, "routes/admin+/apps": { "id": "routes/admin+/apps", "parentId": "routes/admin+/_layout", "path": "apps", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/apps-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/admin+/cache": { "id": "routes/admin+/cache", "parentId": "routes/admin+/_layout", "path": "cache", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/cache-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/apps": { "id": "routes/apps", "parentId": "root", "path": "apps", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/apps-DP2rzg_V.js", "imports": [], "css": [] }, "routes/diff": { "id": "routes/diff", "parentId": "root", "path": "diff", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/diff-CPrD1rHd.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/request-info-DHtGM4FI.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/epic-video-CfelX9-n.js", "/assets/progress-bar-wMXWRGq0.js", "/assets/index-C6ToujzV.js", "/assets/mdx-CQW0I4So.js", "/assets/diff-4FQLirNf.js", "/assets/nav-chevrons-DaXg0NPS.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/discord.callback": { "id": "routes/discord.callback", "parentId": "root", "path": "discord/callback", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/discord.callback-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/exercises": { "id": "routes/exercises", "parentId": "root", "path": "exercises", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/exercises-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/launch-editor": { "id": "routes/launch-editor", "parentId": "root", "path": "launch-editor", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/launch-editor-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/login-sse": { "id": "routes/login-sse", "parentId": "root", "path": "login-sse", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/login-sse-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/og": { "id": "routes/og", "parentId": "root", "path": "og", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/og-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/onboarding": { "id": "routes/onboarding", "parentId": "root", "path": "onboarding", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/onboarding-BXGyEPXy.js", "imports": ["/assets/index-Czg1ruVn.js", "/assets/clsx-B-dksMZM.js", "/assets/components-wgHiPsTg.js", "/assets/misc-S5ZD98sI.js", "/assets/request-info-DHtGM4FI.js", "/assets/tooltip-BtzSIxlB.js", "/assets/client-hints-DLYDs4RF.js", "/assets/index-yEAxvbDV.js", "/assets/loading-B0uKxERz.js", "/assets/user-CdUDQ7a8.js", "/assets/button-BA3iiLRs.js", "/assets/epic-video-CfelX9-n.js"], "css": ["/assets/epic-video-DUnRvy1A.css"] }, "routes/processes": { "id": "routes/processes", "parentId": "root", "path": "processes", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/processes-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/progress": { "id": "routes/progress", "parentId": "root", "path": "progress", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/progress-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/robots[.]txt": { "id": "routes/robots[.]txt", "parentId": "root", "path": "robots.txt", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/robots_._txt-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/set-playground": { "id": "routes/set-playground", "parentId": "root", "path": "set-playground", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/set-playground-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/sitemap[.]xml": { "id": "routes/sitemap[.]xml", "parentId": "root", "path": "sitemap.xml", "index": void 0, "caseSensitive": void 0, "hasAction": false, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/sitemap_._xml-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/start": { "id": "routes/start", "parentId": "root", "path": "start", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/start-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/test": { "id": "routes/test", "parentId": "root", "path": "test", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": true, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/test-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/theme/index": { "id": "routes/theme/index", "parentId": "root", "path": "theme", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/index-DP2rzg_V.js", "imports": [], "css": [] }, "routes/update-mdx-cache": { "id": "routes/update-mdx-cache", "parentId": "root", "path": "update-mdx-cache", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/update-mdx-cache-l0sNRNKZ.js", "imports": [], "css": [] }, "routes/video-player/index": { "id": "routes/video-player/index", "parentId": "root", "path": "video-player", "index": void 0, "caseSensitive": void 0, "hasAction": true, "hasLoader": false, "hasClientAction": false, "hasClientLoader": false, "hasErrorBoundary": false, "module": "/assets/index-K6Dvbx-E.js", "imports": [], "css": [] } }, "url": "/assets/manifest-37355e21.js", "version": "37355e21" };
13081
13159
  const mode = "production";
13082
13160
  const assetsBuildDirectory = "build/client";
13083
13161
  const basename = "/";
@@ -13206,13 +13284,21 @@ const routes = {
13206
13284
  caseSensitive: void 0,
13207
13285
  module: route14
13208
13286
  },
13287
+ "routes/_app+/app.$appName+/test.epic_ws[.js]": {
13288
+ id: "routes/_app+/app.$appName+/test.epic_ws[.js]",
13289
+ parentId: "routes/_app+/_layout",
13290
+ path: "app/:appName/test/epic_ws.js",
13291
+ index: void 0,
13292
+ caseSensitive: void 0,
13293
+ module: route15
13294
+ },
13209
13295
  "routes/_app+/discord": {
13210
13296
  id: "routes/_app+/discord",
13211
13297
  parentId: "routes/_app+/_layout",
13212
13298
  path: "discord",
13213
13299
  index: void 0,
13214
13300
  caseSensitive: void 0,
13215
- module: route15
13301
+ module: route16
13216
13302
  },
13217
13303
  "routes/_app+/finished": {
13218
13304
  id: "routes/_app+/finished",
@@ -13220,7 +13306,7 @@ const routes = {
13220
13306
  path: "finished",
13221
13307
  index: void 0,
13222
13308
  caseSensitive: void 0,
13223
- module: route16
13309
+ module: route17
13224
13310
  },
13225
13311
  "routes/_app+/index": {
13226
13312
  id: "routes/_app+/index",
@@ -13228,7 +13314,7 @@ const routes = {
13228
13314
  path: void 0,
13229
13315
  index: true,
13230
13316
  caseSensitive: void 0,
13231
- module: route17
13317
+ module: route18
13232
13318
  },
13233
13319
  "routes/_app+/login": {
13234
13320
  id: "routes/_app+/login",
@@ -13236,7 +13322,7 @@ const routes = {
13236
13322
  path: "login",
13237
13323
  index: void 0,
13238
13324
  caseSensitive: void 0,
13239
- module: route18
13325
+ module: route19
13240
13326
  },
13241
13327
  "routes/_app+/support": {
13242
13328
  id: "routes/_app+/support",
@@ -13244,7 +13330,7 @@ const routes = {
13244
13330
  path: "support",
13245
13331
  index: void 0,
13246
13332
  caseSensitive: void 0,
13247
- module: route19
13333
+ module: route20
13248
13334
  },
13249
13335
  "routes/admin+/_layout": {
13250
13336
  id: "routes/admin+/_layout",
@@ -13252,7 +13338,7 @@ const routes = {
13252
13338
  path: "admin",
13253
13339
  index: void 0,
13254
13340
  caseSensitive: void 0,
13255
- module: route20
13341
+ module: route21
13256
13342
  },
13257
13343
  "routes/admin+/apps": {
13258
13344
  id: "routes/admin+/apps",
@@ -13260,7 +13346,7 @@ const routes = {
13260
13346
  path: "apps",
13261
13347
  index: void 0,
13262
13348
  caseSensitive: void 0,
13263
- module: route21
13349
+ module: route22
13264
13350
  },
13265
13351
  "routes/admin+/cache": {
13266
13352
  id: "routes/admin+/cache",
@@ -13268,7 +13354,7 @@ const routes = {
13268
13354
  path: "cache",
13269
13355
  index: void 0,
13270
13356
  caseSensitive: void 0,
13271
- module: route22
13357
+ module: route23
13272
13358
  },
13273
13359
  "routes/apps": {
13274
13360
  id: "routes/apps",
@@ -13276,7 +13362,7 @@ const routes = {
13276
13362
  path: "apps",
13277
13363
  index: void 0,
13278
13364
  caseSensitive: void 0,
13279
- module: route23
13365
+ module: route24
13280
13366
  },
13281
13367
  "routes/diff": {
13282
13368
  id: "routes/diff",
@@ -13284,7 +13370,7 @@ const routes = {
13284
13370
  path: "diff",
13285
13371
  index: void 0,
13286
13372
  caseSensitive: void 0,
13287
- module: route24
13373
+ module: route25
13288
13374
  },
13289
13375
  "routes/discord.callback": {
13290
13376
  id: "routes/discord.callback",
@@ -13292,7 +13378,7 @@ const routes = {
13292
13378
  path: "discord/callback",
13293
13379
  index: void 0,
13294
13380
  caseSensitive: void 0,
13295
- module: route25
13381
+ module: route26
13296
13382
  },
13297
13383
  "routes/exercises": {
13298
13384
  id: "routes/exercises",
@@ -13300,7 +13386,7 @@ const routes = {
13300
13386
  path: "exercises",
13301
13387
  index: void 0,
13302
13388
  caseSensitive: void 0,
13303
- module: route26
13389
+ module: route27
13304
13390
  },
13305
13391
  "routes/launch-editor": {
13306
13392
  id: "routes/launch-editor",
@@ -13308,7 +13394,7 @@ const routes = {
13308
13394
  path: "launch-editor",
13309
13395
  index: void 0,
13310
13396
  caseSensitive: void 0,
13311
- module: route27
13397
+ module: route28
13312
13398
  },
13313
13399
  "routes/login-sse": {
13314
13400
  id: "routes/login-sse",
@@ -13316,7 +13402,7 @@ const routes = {
13316
13402
  path: "login-sse",
13317
13403
  index: void 0,
13318
13404
  caseSensitive: void 0,
13319
- module: route28
13405
+ module: route29
13320
13406
  },
13321
13407
  "routes/og": {
13322
13408
  id: "routes/og",
@@ -13324,7 +13410,7 @@ const routes = {
13324
13410
  path: "og",
13325
13411
  index: void 0,
13326
13412
  caseSensitive: void 0,
13327
- module: route29
13413
+ module: route30
13328
13414
  },
13329
13415
  "routes/onboarding": {
13330
13416
  id: "routes/onboarding",
@@ -13332,7 +13418,7 @@ const routes = {
13332
13418
  path: "onboarding",
13333
13419
  index: void 0,
13334
13420
  caseSensitive: void 0,
13335
- module: route30
13421
+ module: route31
13336
13422
  },
13337
13423
  "routes/processes": {
13338
13424
  id: "routes/processes",
@@ -13340,7 +13426,7 @@ const routes = {
13340
13426
  path: "processes",
13341
13427
  index: void 0,
13342
13428
  caseSensitive: void 0,
13343
- module: route31
13429
+ module: route32
13344
13430
  },
13345
13431
  "routes/progress": {
13346
13432
  id: "routes/progress",
@@ -13348,7 +13434,7 @@ const routes = {
13348
13434
  path: "progress",
13349
13435
  index: void 0,
13350
13436
  caseSensitive: void 0,
13351
- module: route32
13437
+ module: route33
13352
13438
  },
13353
13439
  "routes/robots[.]txt": {
13354
13440
  id: "routes/robots[.]txt",
@@ -13356,7 +13442,7 @@ const routes = {
13356
13442
  path: "robots.txt",
13357
13443
  index: void 0,
13358
13444
  caseSensitive: void 0,
13359
- module: route33
13445
+ module: route34
13360
13446
  },
13361
13447
  "routes/set-playground": {
13362
13448
  id: "routes/set-playground",
@@ -13364,7 +13450,7 @@ const routes = {
13364
13450
  path: "set-playground",
13365
13451
  index: void 0,
13366
13452
  caseSensitive: void 0,
13367
- module: route34
13453
+ module: route35
13368
13454
  },
13369
13455
  "routes/sitemap[.]xml": {
13370
13456
  id: "routes/sitemap[.]xml",
@@ -13372,7 +13458,7 @@ const routes = {
13372
13458
  path: "sitemap.xml",
13373
13459
  index: void 0,
13374
13460
  caseSensitive: void 0,
13375
- module: route35
13461
+ module: route36
13376
13462
  },
13377
13463
  "routes/start": {
13378
13464
  id: "routes/start",
@@ -13380,7 +13466,7 @@ const routes = {
13380
13466
  path: "start",
13381
13467
  index: void 0,
13382
13468
  caseSensitive: void 0,
13383
- module: route36
13469
+ module: route37
13384
13470
  },
13385
13471
  "routes/test": {
13386
13472
  id: "routes/test",
@@ -13388,7 +13474,7 @@ const routes = {
13388
13474
  path: "test",
13389
13475
  index: void 0,
13390
13476
  caseSensitive: void 0,
13391
- module: route37
13477
+ module: route38
13392
13478
  },
13393
13479
  "routes/theme/index": {
13394
13480
  id: "routes/theme/index",
@@ -13396,7 +13482,7 @@ const routes = {
13396
13482
  path: "theme",
13397
13483
  index: void 0,
13398
13484
  caseSensitive: void 0,
13399
- module: route38
13485
+ module: route39
13400
13486
  },
13401
13487
  "routes/update-mdx-cache": {
13402
13488
  id: "routes/update-mdx-cache",
@@ -13404,7 +13490,7 @@ const routes = {
13404
13490
  path: "update-mdx-cache",
13405
13491
  index: void 0,
13406
13492
  caseSensitive: void 0,
13407
- module: route39
13493
+ module: route40
13408
13494
  },
13409
13495
  "routes/video-player/index": {
13410
13496
  id: "routes/video-player/index",
@@ -13412,7 +13498,7 @@ const routes = {
13412
13498
  path: "video-player",
13413
13499
  index: void 0,
13414
13500
  caseSensitive: void 0,
13415
- module: route40
13501
+ module: route41
13416
13502
  }
13417
13503
  };
13418
13504
  export {