Files
dealplustech/astro.config.mjs
2026-03-03 10:47:07 +07:00

19 lines
388 B
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
import tailwindcss from '@tailwindcss/vite';
export default defineConfig({
vite: {
plugins: [tailwindcss()],
server: {
host: true, // Listen on all addresses
allowedHosts: true // Allow all hostnames
}
},
// Preview server configuration
preview: {
host: true,
allowedHosts: true
}
});