We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab875c3 commit 60a92ccCopy full SHA for 60a92cc
lean-spec.code-workspace
@@ -6,7 +6,7 @@
6
],
7
"settings": {
8
"rust-analyzer.linkedProjects": [
9
- "./packages/desktop/src-tauri/Cargo.toml"
+ "./rust/Cargo.toml"
10
]
11
}
12
packages/ui-vite/tailwind.config.js packages/ui-vite/tailwind.config.tspackages/ui-vite/tailwind.config.js renamed to packages/ui-vite/tailwind.config.ts
@@ -1,5 +1,7 @@
1
-/** @type {import('tailwindcss').Config} */
2
-export default {
+import type { Config } from "tailwindcss";
+import typography from "@tailwindcss/typography";
3
+
4
+const config: Config = {
5
darkMode: "class",
content: [
"./index.html",
@@ -49,6 +51,7 @@ export default {
49
51
},
50
52
53
- plugins: [require("@tailwindcss/typography")],
54
+ plugins: [typography],
55
56
57
+export default config;
0 commit comments