202404170330

This commit is contained in:
nelle 2024-04-17 03:30:54 -06:00
parent acb2ee459e
commit f373c20513

View file

@ -1,7 +1,11 @@
import { defineConfig } from 'astro/config'; import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
import sitemap from '@astrojs/sitemap';
// https://astro.build/config // https://astro.build/config
export default defineConfig({ export default defineConfig({
server: { port: 8001 }, server: { port: 8001 },
site: "https://limepot.xyz" site: "https://limepot.xyz",
integrations: [mdx(), sitemap()],
}); });