mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-22 18:02:42 +00:00
83 lines
2.4 KiB
JavaScript
83 lines
2.4 KiB
JavaScript
export const manifest = (() => {
|
|
function __memo(fn) {
|
|
let value;
|
|
return () => value ??= (value = fn());
|
|
}
|
|
|
|
return {
|
|
appDir: "_app",
|
|
appPath: "_app",
|
|
assets: new Set([".htaccess","favicon.png","icon.svg","robots.txt","sandbox.html"]),
|
|
mimeTypes: {".png":"image/png",".svg":"image/svg+xml",".txt":"text/plain",".html":"text/html"},
|
|
_: {
|
|
client: {"start":"_app/immutable/entry/start.1198e80a.js","app":"_app/immutable/entry/app.256ce429.js","imports":["_app/immutable/entry/start.1198e80a.js","_app/immutable/chunks/scheduler.f5cfe514.js","_app/immutable/chunks/singletons.de2fb98c.js","_app/immutable/chunks/index.c76aaf45.js","_app/immutable/chunks/control.f5b05b5f.js","_app/immutable/entry/app.256ce429.js","_app/immutable/chunks/preload-helper.a4192956.js","_app/immutable/chunks/scheduler.f5cfe514.js","_app/immutable/chunks/index.c2fc59c9.js"],"stylesheets":[],"fonts":[]},
|
|
nodes: [
|
|
__memo(() => import('./nodes/0.js')),
|
|
__memo(() => import('./nodes/1.js')),
|
|
__memo(() => import('./nodes/2.js')),
|
|
__memo(() => import('./nodes/3.js')),
|
|
__memo(() => import('./nodes/4.js')),
|
|
__memo(() => import('./nodes/5.js')),
|
|
__memo(() => import('./nodes/6.js')),
|
|
__memo(() => import('./nodes/7.js')),
|
|
__memo(() => import('./nodes/8.js'))
|
|
],
|
|
routes: [
|
|
{
|
|
id: "/",
|
|
pattern: /^\/$/,
|
|
params: [],
|
|
page: { layouts: [0,], errors: [1,], leaf: 2 },
|
|
endpoint: null
|
|
},
|
|
{
|
|
id: "/config",
|
|
pattern: /^\/config\/?$/,
|
|
params: [],
|
|
page: { layouts: [0,], errors: [1,], leaf: 3 },
|
|
endpoint: null
|
|
},
|
|
{
|
|
id: "/config/chords",
|
|
pattern: /^\/config\/chords\/?$/,
|
|
params: [],
|
|
page: { layouts: [0,], errors: [1,], leaf: 4 },
|
|
endpoint: null
|
|
},
|
|
{
|
|
id: "/config/layout",
|
|
pattern: /^\/config\/layout\/?$/,
|
|
params: [],
|
|
page: { layouts: [0,], errors: [1,], leaf: 5 },
|
|
endpoint: null
|
|
},
|
|
{
|
|
id: "/config/settings",
|
|
pattern: /^\/config\/settings\/?$/,
|
|
params: [],
|
|
page: { layouts: [0,], errors: [1,], leaf: 6 },
|
|
endpoint: null
|
|
},
|
|
{
|
|
id: "/plugin",
|
|
pattern: /^\/plugin\/?$/,
|
|
params: [],
|
|
page: { layouts: [0,], errors: [1,], leaf: 7 },
|
|
endpoint: null
|
|
},
|
|
{
|
|
id: "/terminal",
|
|
pattern: /^\/terminal\/?$/,
|
|
params: [],
|
|
page: { layouts: [0,], errors: [1,], leaf: 8 },
|
|
endpoint: null
|
|
}
|
|
],
|
|
matchers: async () => {
|
|
|
|
return { };
|
|
}
|
|
}
|
|
}
|
|
})();
|