astro/packages/integrations/node/src/index.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.2 KiB
TypeScript
Raw Normal View History

import type { AstroAdapter, AstroIntegration } from 'astro';
import type { Options, UserOptions } from './types';
export function getAdapter(options: Options): AstroAdapter {
return {
name: '@astrojs/node',
serverEntrypoint: '@astrojs/node/server.js',
previewEntrypoint: '@astrojs/node/preview.js',
exports: ['handler', 'startServer'],
2022-10-12 21:27:56 +00:00
args: options,
};
}
export default function createIntegration(userOptions: UserOptions): AstroIntegration {
2022-10-12 21:27:56 +00:00
if (!userOptions?.mode) {
throw new Error(`[@astrojs/node] Setting the 'mode' option is required.`);
}
let _options: Options;
return {
name: '@astrojs/node',
hooks: {
'astro:config:setup': ({ updateConfig }) => {
2022-10-18 15:49:01 +00:00
updateConfig({
vite: {
ssr: {
noExternal: ['@astrojs/node'],
},
},
});
},
'astro:config:done': ({ setAdapter, config }) => {
_options = {
...userOptions,
client: config.build.client?.toString(),
server: config.build.server?.toString(),
host: config.server.host,
port: config.server.port,
};
setAdapter(getAdapter(_options));
2022-07-25 04:20:38 +00:00
if (config.output === 'static') {
2022-08-29 09:02:44 +00:00
console.warn(`[@astrojs/node] \`output: "server"\` is required to use this adapter.`);
}
2022-04-14 13:52:56 +00:00
},
2022-03-24 11:27:15 +00:00
},
};
}