Add prettier, tailwindcss, prettier-plugin-astro

This commit is contained in:
2023-11-24 17:36:42 -06:00
parent d7d7628e4e
commit 71a0e8e454
5 changed files with 116 additions and 9 deletions

View File

@@ -1,4 +1,8 @@
import { defineConfig } from 'astro/config';
import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({});
export default defineConfig({
integrations: [tailwind()],
});