
* chore: updates for new validator package and landing-page app * docs: update packages examples * chore: bump patch, update docs
12 lines
284 B
JavaScript
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"],
|
|
},
|
|
},
|
|
});
|