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