// @ts-check import { defineConfig } from 'astro/config'; // 샘플 배포 주소. 도메인 확정 후 SITE_URL 환경변수로 교체한다. const site = process.env.SITE_URL || 'https://view-supporters-sample.vercel.app'; export default defineConfig({ site, trailingSlash: 'never', build: { format: 'file' }, compressHTML: true, });