diff --git a/astro.config.mjs b/astro.config.mjs index 96d4996ec..d9468c610 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,21 +1,21 @@ +// @ts-check import { defineConfig } from 'astro/config'; +import tailwindcss from '@tailwindcss/vite'; -// For SSR with API routes -import node from '@astrojs/node'; - +// https://astro.build/config export default defineConfig({ - output: 'server', - adapter: node({ mode: 'standalone' }), + output: 'static', build: { inlineStylesheets: 'always', }, vite: { + plugins: [tailwindcss()], preview: { - host: true, // Allow any host + host: true, port: 80, }, server: { - host: true, // Allow any host + host: true, port: 80, }, },