Skip to content

Commit 00f15ca

Browse files
committed
fix(e2e): add node adapter to astro-hybrid template for build mode
1 parent f15afe6 commit 00f15ca

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

integration/templates/astro-hybrid/astro.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
import { defineConfig } from 'astro/config';
2+
import node from '@astrojs/node';
23
import clerk from '@clerk/astro';
34
import react from '@astrojs/react';
45

56
export default defineConfig({
67
output: 'hybrid',
8+
adapter: node({
9+
mode: 'standalone',
10+
}),
711
integrations: [
812
clerk({
913
appearance: {

0 commit comments

Comments
 (0)