redesign c:

This commit is contained in:
zackartz 2024-05-28 17:46:33 -04:00
parent 4ae31ee714
commit f50572713b
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
19 changed files with 13891 additions and 1501 deletions

13
.prettierrc.mjs Normal file
View file

@ -0,0 +1,13 @@
// .prettierrc.mjs
/** @type {import("prettier").Config} */
export default {
plugins: ["prettier-plugin-astro"],
overrides: [
{
files: "*.astro",
options: {
parser: "astro",
},
},
],
};