2024-08-02 20:52:09 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
|
|
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
|
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2024-08-08 18:16:20 +00:00
|
|
|
site: 'https://polsevev.dev',
|
2024-08-02 20:52:09 +00:00
|
|
|
integrations: [mdx(), sitemap()],
|
|
|
|
});
|