19 lines
355 B
JavaScript
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'
|
|
})
|
|
}); |