import { defineConfig } from 'astro/config'; import tailwind from '@astrojs/tailwind'; export default defineConfig({ integrations: [tailwind()], site: process.env.PUBLIC_SITE_URL || 'https://st.l.supported.systems', output: 'static', server: { host: '0.0.0.0', port: 4321 }, // Handle domain routing for both .ink domains vite: { define: { global: 'globalThis', }, server: { host: '0.0.0.0', allowedHosts: [ process.env.DOMAIN || 'st.l.supported.systems', 'localhost', '127.0.0.1' ], fs: { allow: ['..'] } } } });