spb/svgarden Public
SVGarden — searchable bank of 74 self-contained SVG+CSS animation snippets (svgarden.dev)
HTML 79.2%
Astro 10.3%
JavaScript 6%
CSS 3.7%
Shell 0.8%
1/**2 * ============================================================3 * SVGarden — https://www.svgarden.dev4 * Author : Simon-Pierre Boucher5 * Contact: contact@spboucher.ai6 * File : astro.config.mjs7 * Desc : Astro configuration — static output for svgarden.dev8 * ============================================================9 */10import { defineConfig } from 'astro/config';1112export default defineConfig({13 site: 'https://www.svgarden.dev',14 output: 'static',15 trailingSlash: 'never',16 build: {17 format: 'file',18 },19 server: {20 port: 4321,21 },22});23