diff --git a/astro.config.mjs b/astro.config.mjs index eb8d7bd..59bb005 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,13 +1,11 @@ // @ts-check -import { defineConfig } from 'astro/config'; +import { defineConfig } from "astro/config"; import tailwindcss from "@tailwindcss/vite"; - import react from "@astrojs/react"; - // https://astro.build/config export default defineConfig({ - vite: { plugins: [tailwindcss()], }, + vite: { plugins: [tailwindcss()] }, integrations: [react()], -}); \ No newline at end of file +}); diff --git a/tsconfig.json b/tsconfig.json index 2360e16..77466c0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,7 @@ { "extends": "astro/tsconfigs/strict", - "include": [ - ".astro/types.d.ts", - "**/*" - ], - "exclude": [ - "dist" - ], + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"], "compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "react", @@ -20,4 +15,4 @@ "@styles/*": ["src/styles/*"] } } -} \ No newline at end of file +}