astro-reactive-form/apps/landing-page/astro.config.mjs
Ayo Ayco 205d1f27b2
style(landing-page): force dark theme (#181)
* style(landing-page): force dark theme

* fix(landing-page): wrong title and url
2022-11-07 19:48:04 +01:00

12 lines
249 B
JavaScript

import tailwind from "@astrojs/tailwind";
import { defineConfig } from "astro/config";
export default defineConfig({
site: "https://astro-reactive.dev",
integrations: [tailwind()],
vite: {
ssr: {
external: ["svgo"],
},
},
});