// Keep at the top import './polyfill.js'; import type { SSRManifest } from 'astro'; import { NodeApp } from 'astro/app/node'; import { setGetEnv } from 'astro/env/setup'; import createMiddleware from './middleware.js'; import { createStandaloneHandler } from './standalone.js'; import startServer from './standalone.js'; import type { Options } from './types.js'; setGetEnv((key) => process.env[key]); export function createExports(manifest: SSRManifest, options: Options) { const app = new NodeApp(manifest); options.trailingSlash = manifest.trailingSlash; return { options: options, handler: options.mode === 'middleware' ? createMiddleware(app) : createStandaloneHandler(app, options), startServer: () => startServer(app, options), }; } export function start(manifest: SSRManifest, options: Options) { if (options.mode !== 'standalone' || process.env.ASTRO_NODE_AUTOSTART === 'disabled') { return; } const app = new NodeApp(manifest); startServer(app, options); }