12 lines
282 B
JavaScript
12 lines
282 B
JavaScript
|
|
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),
|
||
|
|
},
|
||
|
|
});
|