From cf85f107245fd40f7b453d30790a8649eb972083 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 17 Sep 2024 22:27:55 +0000 Subject: Update launch configuration and enhance PostSummary component layout --- .vscode/launch.json | 2 +- astro.config.mjs | 4 +++- src/components/PostSummary.astro | 50 ++++++++++++++++++---------------------- 3 files changed, 26 insertions(+), 30 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index d642209..64aca51 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,7 +2,7 @@ "version": "0.2.0", "configurations": [ { - "command": "./node_modules/.bin/astro dev", + "command": "./node_modules/.bin/astro dev --host 0.0.0.0", "name": "Development server", "request": "launch", "type": "node-terminal" diff --git a/astro.config.mjs b/astro.config.mjs index 1f6c4c2..9317308 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -6,7 +6,9 @@ import sitemap from "@astrojs/sitemap"; export default defineConfig({ site: "https://popov.link", output: "hybrid", - adapter: cloudflare(), + adapter: cloudflare({ + imageService: "compile", + }), integrations: [sitemap()], markdown: { remarkPlugins: [remarkReadingTime], diff --git a/src/components/PostSummary.astro b/src/components/PostSummary.astro index 2f98130..59d7683 100644 --- a/src/components/PostSummary.astro +++ b/src/components/PostSummary.astro @@ -7,45 +7,39 @@ type Props = { }; const { post } = Astro.props; +const { remarkPluginFrontmatter } = await post.render(); +const formattedDate = dayjs(post.data.pubDate.toString()).format("MMMM DD, YYYY"); --- -
-

{post.data.title}

-
- - -
-

{post.data.description}

- Read More -
+ +
+
+ + + {remarkPluginFrontmatter.minutesRead} +
+

{post.data.title}

+

{post.data.description}

+
+
-- cgit v1.2.3