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

18 lines
384 B
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
import tailwindcss from '@tailwindcss/vite';
// https://astro.build/config
export default defineConfig({
vite: {
plugins: [tailwindcss()],
server: {
allowedHosts: true // Allow all hosts for development
},
preview: {
allowedHosts: true // Allow all hosts for production preview
}
}
});