0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-04 16:40:26 +03:00
Files
popov.link/astro.config.mjs
Valentin Popov 4e8c17a6ea chore: update blog routing and header link
- Removed the redirects for the blog route in the configuration.
- Updated the blog link in the Header component to include a trailing slash.
- Added a new index page for the blog to display all posts.
2025-06-10 14:05:48 +00:00

19 lines
413 B
JavaScript

import { defineConfig } from "astro/config";
import { remarkReadingTime } from "./src/plugins/remarkReadingTime";
import sitemap from "@astrojs/sitemap";
export default defineConfig({
site: "https://popov.link",
output: "static",
integrations: [sitemap()],
build: {
inlineStylesheets: "always",
},
markdown: {
remarkPlugins: [remarkReadingTime],
shikiConfig: {
theme: "vitesse-dark",
},
},
});