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:
parent
f2dc5ad235
commit
a33f269253
19 changed files with 111 additions and 113 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue