2026-05-04 15:22:20 +08:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
|
|
2026-05-05 18:33:11 +08:00
|
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
|
|
|
|
2026-05-04 15:22:20 +08:00
|
|
|
const host = process.env.HOST || 'localhost';
|
|
|
|
|
const port = process.env.PORT || '4321';
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
site: process.env.SITE_URL || `http://${host}:${port}`,
|
2026-05-05 18:33:11 +08:00
|
|
|
|
2026-05-04 15:22:20 +08:00
|
|
|
server: {
|
|
|
|
|
host,
|
|
|
|
|
port: parseInt(port, 10),
|
|
|
|
|
},
|
2026-05-05 18:33:11 +08:00
|
|
|
|
|
|
|
|
vite: {
|
|
|
|
|
plugins: [tailwindcss()],
|
|
|
|
|
},
|
2026-05-04 15:22:20 +08:00
|
|
|
});
|