This commit is contained in:
Morten Olsen
2023-10-30 10:24:29 +01:00
commit 5f79c8da43
65 changed files with 6312 additions and 0 deletions

15
astro.config.mjs Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
import sitemap from '@astrojs/sitemap';
// https://astro.build/config
export default defineConfig({
site: 'https://mortenolsen.pro',
integrations: [mdx(), sitemap()],
vite: {
build: {
assetsInlineLimit: 1024 * 10,
}
},
});