style: reformat

Reformat files using Prettier and Rustywind. I tried the official
Tailwind CSS Prettier plugin but it was erroring when trying to run it -
I assume because I'm using Astro's Tailwind integration.
This commit is contained in:
Oliver Davies 2023-04-19 17:00:29 +01:00
parent f2dc5ad235
commit a33f269253
19 changed files with 111 additions and 113 deletions

View file

@ -2,10 +2,10 @@
import AboutMe from "~/components/AboutMe.astro";
import Layout from "~/layouts/Layout.astro";
import Markdown from "~/components/Markdown.astro";
import { getCollection } from 'astro:content';
import { getCollection } from "astro:content";
export async function getStaticPaths() {
const posts = await getCollection('blog');
const posts = await getCollection("blog");
return posts.map((post) => {
return {