AB-funnels/astro.config.mjs
2025-04-17 12:27:52 -06:00

19 lines
355 B
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
import node from '@astrojs/node';
// https://astro.build/config
export default defineConfig({
site: "https://demo.site",
// reidrects abc.xyz/ -> abc.xyz
trailingSlash: 'never',
// cookie stuff can't be prerendered
output: 'server',
adapter: node({
mode: 'standalone'
})
});