Joey889 commited on
Commit
bb26ccd
·
verified ·
1 Parent(s): e69d65e

Upload 10 files

Browse files
Files changed (3) hide show
  1. package.json +3 -3
  2. postcss.config.js +6 -0
  3. tailwind.config.ts +13 -0
package.json CHANGED
@@ -67,13 +67,13 @@
67
  "@types/react": "^18.3.12",
68
  "@types/react-dom": "^18.3.1",
69
  "@vitejs/plugin-react": "^4.3.4",
70
- "autoprefixer": "10.4.20",
71
  "eslint": "^9.15.0",
72
  "eslint-plugin-react-hooks": "^5.0.0",
73
  "eslint-plugin-react-refresh": "^0.4.14",
74
  "globals": "^15.12.0",
75
- "postcss": "8.4.49",
76
- "tailwindcss": "v3.4.16",
77
  "typescript": "~5.6.2",
78
  "typescript-eslint": "^8.15.0",
79
  "vite": "^6.0.1"
 
67
  "@types/react": "^18.3.12",
68
  "@types/react-dom": "^18.3.1",
69
  "@vitejs/plugin-react": "^4.3.4",
70
+ "autoprefixer": "^10.4.17",
71
  "eslint": "^9.15.0",
72
  "eslint-plugin-react-hooks": "^5.0.0",
73
  "eslint-plugin-react-refresh": "^0.4.14",
74
  "globals": "^15.12.0",
75
+ "postcss": "^8.4.31",
76
+ "tailwindcss": "^3.4.1",
77
  "typescript": "~5.6.2",
78
  "typescript-eslint": "^8.15.0",
79
  "vite": "^6.0.1"
postcss.config.js ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ export default {
2
+ plugins: {
3
+ tailwindcss: {},
4
+ autoprefixer: {},
5
+ },
6
+ }
tailwind.config.ts ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import type { Config } from "tailwindcss"
2
+
3
+ const config: Config = {
4
+ content: [
5
+ "./index.html",
6
+ "./src/**/*.{js,ts,jsx,tsx}",
7
+ ],
8
+ theme: {
9
+ extend: {},
10
+ },
11
+ plugins: [],
12
+ }
13
+ export default config