diff --git a/astro.config.mjs b/astro.config.mjs index 1a3482473..fe6d6d74f 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -4,22 +4,21 @@ import tailwindcss from '@tailwindcss/vite'; // https://astro.build/config export default defineConfig({ - output: 'hybrid', - adapter: undefined, + output: 'static', // Changed from 'hybrid' (deprecated) build: { inlineStylesheets: 'always', }, vite: { plugins: [tailwindcss()], preview: { - host: true, // Allow all hosts + host: true, // Allow all hosts (fix Easypanel access) port: 80, strictPort: false, }, server: { - host: true, // Allow all hosts + host: true, // Allow all hosts port: 80, strictPort: false, }, }, -}); +}); \ No newline at end of file