update page structure

This commit is contained in:
2025-02-06 19:12:41 -05:00
parent 27bf9ad185
commit e15bb944c9
22 changed files with 6236 additions and 88 deletions
+12 -7
View File
@@ -3,12 +3,17 @@ import { defineConfig } from 'astro/config';
// https://astro.build/config
import mdx from '@astrojs/mdx';
import alpinejs from '@astrojs/alpinejs';
// https://astro.build/config
export default defineConfig({
site: 'https://ghall.blog',
output: 'static',
integrations: [mdx()],
experimental: {
svg: true,
},
});
site: 'https://ghall.blog',
output: 'static',
integrations: [mdx(), alpinejs()],
experimental: {
svg: true,
},
redirects: {
'/posts/[...slug]': '/blog/[...slug]',
},
});