diff --git a/README.md b/README.md
index cef7b97..8fc190f 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
@@ -47,7 +47,6 @@ See [Vitesse](https://github.com/antfu/vitesse) for full featureset.
### UI Frameworks
- [Windi CSS](https://github.com/windicss/windicss) (On-demand [TailwindCSS](https://tailwindcss.com/)) - lighter and faster, with a bunch of additional features!
- - [Windi CSS Typography](https://windicss.org/plugins/official/typography.html)
### Icons
diff --git a/tsconfig.json b/tsconfig.json
index d1a11f1..1aec677 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -15,8 +15,7 @@
"forceConsistentCasingInFileNames": true,
"types": [
"vite/client",
- "vite-plugin-pages/client",
- "vite-plugin-vue-layouts/client"
+ "vite-plugin-pages/client"
],
"paths": {
"~/*": ["src/*"]
diff --git a/windi.config.ts b/windi.config.ts
index 7a0a28d..9b93a3c 100644
--- a/windi.config.ts
+++ b/windi.config.ts
@@ -1,43 +1,7 @@
import { defineConfig } from 'windicss/helpers'
-import colors from 'windicss/colors'
-import typography from 'windicss/plugin/typography'
export default defineConfig({
darkMode: 'class',
// https://windicss.org/posts/v30.html#attributify-mode
attributify: true,
-
- plugins: [
- typography(),
- ],
- theme: {
- extend: {
- typography: {
- DEFAULT: {
- css: {
- maxWidth: '65ch',
- color: 'inherit',
- a: {
- 'color': 'inherit',
- 'opacity': 0.75,
- 'fontWeight': '500',
- 'textDecoration': 'underline',
- '&:hover': {
- opacity: 1,
- color: colors.teal[600],
- },
- },
- b: { color: 'inherit' },
- strong: { color: 'inherit' },
- em: { color: 'inherit' },
- h1: { color: 'inherit' },
- h2: { color: 'inherit' },
- h3: { color: 'inherit' },
- h4: { color: 'inherit' },
- code: { color: 'inherit' },
- },
- },
- },
- },
- },
})