File tree 3 files changed +8
-0
lines changed
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 17
17
"@mui/icons-material" : " ^6.4.6" ,
18
18
"@mui/joy" : " ^5.0.0-beta.51" ,
19
19
"@mui/material" : " ^6.4.6" ,
20
+ "@tailwindcss/vite" : " ^4.0.9" ,
20
21
"@tanstack/react-query" : " ^5.66.9" ,
21
22
"i18next" : " ^24.2.2" ,
22
23
"i18next-chained-backend" : " ^4.6.2" ,
33
34
"rehype-raw" : " ^7.0.0" ,
34
35
"remark-gfm" : " ^4.0.1" ,
35
36
"shade-generator" : " ^1.2.7" ,
37
+ "tailwindcss" : " ^4.0.9" ,
36
38
"vite-plugin-checker" : " ^0.9.0" ,
37
39
"zustand" : " ^5.0.3"
38
40
},
47
49
"eslint" : " ^9.21.0" ,
48
50
"eslint-plugin-react-hooks" : " ^5.1.0" ,
49
51
"eslint-plugin-react-refresh" : " ^0.4.19" ,
52
+ "tailwindcss-motion" : " ^1.1.0" ,
50
53
"typescript" : " ^5.7.3" ,
51
54
"vite" : " ^6.2.0" ,
52
55
"vite-plugin-pwa" : " ^0.21.1"
Original file line number Diff line number Diff line change
1
+ @import "tailwindcss" ;
2
+ @plugin "tailwindcss-motion" ;
3
+
1
4
: root {
2
5
background-color : # 242424 ;
3
6
}
Original file line number Diff line number Diff line change
1
+ import tailwindcss from "@tailwindcss/vite" ;
1
2
import react from "@vitejs/plugin-react" ;
2
3
import { defineConfig } from "vite" ;
3
4
import checker from "vite-plugin-checker" ;
@@ -10,6 +11,7 @@ export default defineConfig({
10
11
checker ( {
11
12
typescript : true ,
12
13
} ) ,
14
+ tailwindcss ( ) ,
13
15
VitePWA ( {
14
16
// you can generate the icons using: https://favicon.io/favicon-converter/
15
17
// and the maskable icon using: https://progressier.com/maskable-icons-editor
You can’t perform that action at this time.
0 commit comments