We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd43986 commit eb44eabCopy full SHA for eb44eab
1 file changed
packages/adapters/node/src/index.ts
@@ -30,8 +30,11 @@ export default function createIntegration(userOptions: UserOptions): AstroIntegr
30
return {
31
name: '@astrojs/node',
32
hooks: {
33
- 'astro:config:setup': ({ updateConfig }) => {
+ 'astro:config:setup': ({ updateConfig, config }) => {
34
updateConfig({
35
+ image: {
36
+ endpoint: config.image.endpoint ?? 'astro/assets/endpoint/node',
37
+ },
38
vite: {
39
ssr: {
40
noExternal: ['@astrojs/node'],
0 commit comments