Initial commit of Astro version

This commit is contained in:
Bad Manners 2024-08-15 21:27:00 -03:00
commit e3d1f6999b
79 changed files with 9880 additions and 0 deletions

10
.prettierrc.mjs Normal file
View file

@ -0,0 +1,10 @@
/** @type {import("prettier").Config} */
export default {
trailingComma: "all",
tabWidth: 2,
semi: true,
singleQuote: false,
printWidth: 120,
bracketSpacing: true,
plugins: ["prettier-plugin-astro", "prettier-plugin-tailwindcss"],
};