diff --git a/astro.config.mjs b/astro.config.mjs index 508cbeceb..568c7f95f 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -5,7 +5,16 @@ import tailwindcss from '@tailwindcss/vite'; // https://astro.build/config export default defineConfig({ + output: 'static', vite: { - plugins: [tailwindcss()] - } -}); \ No newline at end of file + plugins: [tailwindcss()], + server: { + host: '0.0.0.0', + allowedHosts: true, + }, + preview: { + host: '0.0.0.0', + allowedHosts: true, + }, + }, +});