Files
astro-nozzy-house-news/astro.config.mjs
2023-02-01 14:12:30 +00:00

13 lines
311 B
JavaScript

import { defineConfig } from "astro/config";
// https://astro.build/config
import mdx from "@astrojs/mdx";
import serviceWorker from "astrojs-service-worker";
// https://astro.build/config
export default defineConfig({
site: "https://house-news.nozzy.online",
integrations: [mdx(), serviceWorker()],
});