IOweb/node_modules/astro/dist/vite-plugin-integrations-container/index.js
2026-07-03 15:07:38 -05:00

38 lines
1.3 KiB
JavaScript

import { normalizePath } from "vite";
import { runHookServerSetup } from "../integrations/hooks.js";
function astroIntegrationsContainerPlugin({
settings,
logger
}) {
let server;
return {
name: "astro:integration-container",
async configureServer(_server) {
server = _server;
if (_server.config.isProduction) return;
await runHookServerSetup({ config: settings.config, server: _server, logger });
},
async buildStart() {
if (settings.injectedRoutes.length === settings.resolvedInjectedRoutes.length) return;
settings.resolvedInjectedRoutes = await Promise.all(
settings.injectedRoutes.map((route) => resolveEntryPoint(route, server, this))
);
}
};
}
async function resolveEntryPoint(route, server, pluginContext) {
const entrypoint = route.entrypoint.toString();
let resolvedId;
if (server) {
const resolved = await server.environments.ssr.pluginContainer.resolveId(entrypoint);
resolvedId = resolved?.id;
} else {
resolvedId = await pluginContext.resolve(entrypoint).then((res) => res?.id).catch(() => void 0);
}
if (!resolvedId) return route;
const resolvedEntryPoint = new URL(`file://${normalizePath(resolvedId)}`);
return { ...route, resolvedEntryPoint };
}
export {
astroIntegrationsContainerPlugin as default
};