Agregado adaptador de Node para SSR

This commit is contained in:
2026-01-13 15:28:10 -03:00
parent 654bf4ce7b
commit 6530856cf2
3 changed files with 200 additions and 2 deletions

View File

@@ -1,5 +1,11 @@
// @ts-check
import { defineConfig } from 'astro/config';
import node from '@astrojs/node';
// https://astro.build/config
export default defineConfig({});
export default defineConfig({
adapter: node({
mode: 'standalone'
})
});