Skip to content

Commit 60a92cc

Browse files
committed
fix: update rust-analyzer linked project path and add Tailwind CSS configuration
1 parent ab875c3 commit 60a92cc

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

lean-spec.code-workspace

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"settings": {
88
"rust-analyzer.linkedProjects": [
9-
"./packages/desktop/src-tauri/Cargo.toml"
9+
"./rust/Cargo.toml"
1010
]
1111
}
1212
}
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
/** @type {import('tailwindcss').Config} */
2-
export default {
1+
import type { Config } from "tailwindcss";
2+
import typography from "@tailwindcss/typography";
3+
4+
const config: Config = {
35
darkMode: "class",
46
content: [
57
"./index.html",
@@ -49,6 +51,7 @@ export default {
4951
},
5052
},
5153
},
52-
plugins: [require("@tailwindcss/typography")],
54+
plugins: [typography],
5355
}
5456

57+
export default config;

0 commit comments

Comments
 (0)