Initial commit
This commit is contained in:
61
dist/server/entry.mjs
vendored
Normal file
61
dist/server/entry.mjs
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
import { renderers } from './renderers.mjs';
|
||||
import { c as createExports, s as serverEntrypointModule } from './chunks/_@astrojs-ssr-adapter_DIu76Dvd.mjs';
|
||||
import { manifest } from './manifest_BJPuFUv4.mjs';
|
||||
|
||||
const serverIslandMap = new Map();;
|
||||
|
||||
const _page0 = () => import('./pages/_image.astro.mjs');
|
||||
const _page1 = () => import('./pages/api/skills/_slug_.astro.mjs');
|
||||
const _page2 = () => import('./pages/api/skills.astro.mjs');
|
||||
const _page3 = () => import('./pages/api/sync/project.astro.mjs');
|
||||
const _page4 = () => import('./pages/api/sync.astro.mjs');
|
||||
const _page5 = () => import('./pages/gi.astro.mjs');
|
||||
const _page6 = () => import('./pages/gp.astro.mjs');
|
||||
const _page7 = () => import('./pages/i.astro.mjs');
|
||||
const _page8 = () => import('./pages/new.astro.mjs');
|
||||
const _page9 = () => import('./pages/p.astro.mjs');
|
||||
const _page10 = () => import('./pages/_slug_/edit.astro.mjs');
|
||||
const _page11 = () => import('./pages/_slug_.astro.mjs');
|
||||
const _page12 = () => import('./pages/index.astro.mjs');
|
||||
const pageMap = new Map([
|
||||
["node_modules/astro/dist/assets/endpoint/node.js", _page0],
|
||||
["src/pages/api/skills/[slug].ts", _page1],
|
||||
["src/pages/api/skills/index.ts", _page2],
|
||||
["src/pages/api/sync/project.ts", _page3],
|
||||
["src/pages/api/sync/index.ts", _page4],
|
||||
["src/pages/gi.ts", _page5],
|
||||
["src/pages/gp.ts", _page6],
|
||||
["src/pages/i.ts", _page7],
|
||||
["src/pages/new.astro", _page8],
|
||||
["src/pages/p.ts", _page9],
|
||||
["src/pages/[slug]/edit.astro", _page10],
|
||||
["src/pages/[slug].astro", _page11],
|
||||
["src/pages/index.astro", _page12]
|
||||
]);
|
||||
|
||||
const _manifest = Object.assign(manifest, {
|
||||
pageMap,
|
||||
serverIslandMap,
|
||||
renderers,
|
||||
actions: () => import('./noop-entrypoint.mjs'),
|
||||
middleware: () => import('./_noop-middleware.mjs')
|
||||
});
|
||||
const _args = {
|
||||
"mode": "standalone",
|
||||
"client": "file:///Users/alex/projects/skillit/dist/client/",
|
||||
"server": "file:///Users/alex/projects/skillit/dist/server/",
|
||||
"host": false,
|
||||
"port": 4321,
|
||||
"assets": "_astro",
|
||||
"experimentalStaticHeaders": false
|
||||
};
|
||||
const _exports = createExports(_manifest, _args);
|
||||
const handler = _exports['handler'];
|
||||
const startServer = _exports['startServer'];
|
||||
const options = _exports['options'];
|
||||
const _start = 'start';
|
||||
if (Object.prototype.hasOwnProperty.call(serverEntrypointModule, _start)) {
|
||||
serverEntrypointModule[_start](_manifest, _args);
|
||||
}
|
||||
|
||||
export { handler, options, pageMap, startServer };
|
||||
Reference in New Issue
Block a user