diff --git a/astro.config.mjs b/astro.config.mjs index 973346f..fe8b8e9 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -14,5 +14,6 @@ export default defineConfig({ ], experimental: { viewTransitions: true - } + }, + trailingSlash: "always" }) diff --git a/src/components/BlogPost.astro b/src/components/BlogPost.astro new file mode 100644 index 0000000..6599946 --- /dev/null +++ b/src/components/BlogPost.astro @@ -0,0 +1,5 @@ +--- +const { title, url } = Astro.props +--- + +
  • {title}
  • \ No newline at end of file