/** * ============================================================ * SVGarden — https://www.svgarden.dev * Author : Simon-Pierre Boucher * Contact: contact@spboucher.ai * File : astro.config.mjs * Desc : Astro configuration — static output for svgarden.dev * ============================================================ */ import { defineConfig } from 'astro/config'; export default defineConfig({ site: 'https://www.svgarden.dev', output: 'static', trailingSlash: 'never', build: { format: 'file', }, server: { port: 4321, }, });