Move to Astro

This commit is contained in:
2023-02-01 14:12:30 +00:00
commit bf36c8c9b3
463 changed files with 10340 additions and 0 deletions

12
astro.config.mjs Normal file
View File

@@ -0,0 +1,12 @@
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()],
});