astro-reactive-form/apps/landing-page/astro.config.mjs
Ayo Ayco 4f1578aa72
Chore update project for new package validator (#91)
* chore: updates for new validator package and landing-page app

* docs: update packages examples

* chore: bump patch, update docs
2022-10-15 19:16:48 +02:00

12 lines
284 B
JavaScript

import tailwind from "@astrojs/tailwind";
import { defineConfig } from "astro/config";
export default defineConfig({
site: "https://astro-moon-landing.netlify.app/",
integrations: [tailwind()],
vite: {
ssr: {
external: ["@11ty/eleventy-img", "svgo"],
},
},
});