You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
569 B

// @ts-check
import { defineConfig } from "astro/config";
import sitemap from "@astrojs/sitemap";
import mdx from "@astrojs/mdx";
import robots from "astro-robots-txt";
// https://astro.build/config
export default defineConfig({
site: "https://www.ruthenic.com",
output: "static",
integrations: [
sitemap(),
mdx(),
robots({
policy: [
{
userAgent: "*",
allow: "/",
disallow: "/newtab",
},
],
}),
],
});