web-projects/astro.config.mjs

12 lines
282 B
JavaScript
Raw Normal View History

import { defineConfig } from 'astro/config';
const host = process.env.HOST || 'localhost';
const port = process.env.PORT || '4321';
export default defineConfig({
site: process.env.SITE_URL || `http://${host}:${port}`,
server: {
host,
port: parseInt(port, 10),
},
});