mirror of
https://github.com/valentineus/popov.link.git
synced 2025-07-04 16:40:26 +03:00
- 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.
19 lines
413 B
JavaScript
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",
|
|
},
|
|
},
|
|
});
|