diff --git a/astro.config.mjs b/astro.config.mjs index 568c7f95f..b6e05eaf2 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -6,15 +6,10 @@ import tailwindcss from '@tailwindcss/vite'; // https://astro.build/config export default defineConfig({ output: 'static', + build: { + inlineStylesheets: 'always', + }, vite: { plugins: [tailwindcss()], - server: { - host: '0.0.0.0', - allowedHosts: true, - }, - preview: { - host: '0.0.0.0', - allowedHosts: true, - }, }, });