Spaces:
Sleeping
Sleeping
Upload 39 files
Browse files- postcss.config.js +3 -2
- tailwind.config.js +3 -3
postcss.config.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
-
|
|
|
|
| 2 |
plugins: {
|
| 3 |
tailwindcss: {},
|
| 4 |
autoprefixer: {},
|
| 5 |
},
|
| 6 |
-
}
|
|
|
|
| 1 |
+
|
| 2 |
+
module.exports = {
|
| 3 |
plugins: {
|
| 4 |
tailwindcss: {},
|
| 5 |
autoprefixer: {},
|
| 6 |
},
|
| 7 |
+
}
|
tailwind.config.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
|
|
| 1 |
/** @type {import('tailwindcss').Config} */
|
| 2 |
-
|
| 3 |
content: [
|
| 4 |
"./index.html",
|
| 5 |
-
"./src/**/*.{js,ts,jsx,tsx}",
|
| 6 |
"./pages/**/*.{js,ts,jsx,tsx}",
|
| 7 |
"./components/**/*.{js,ts,jsx,tsx}",
|
| 8 |
"./App.tsx"
|
|
@@ -11,4 +11,4 @@ export default {
|
|
| 11 |
extend: {},
|
| 12 |
},
|
| 13 |
plugins: [],
|
| 14 |
-
}
|
|
|
|
| 1 |
+
|
| 2 |
/** @type {import('tailwindcss').Config} */
|
| 3 |
+
module.exports = {
|
| 4 |
content: [
|
| 5 |
"./index.html",
|
|
|
|
| 6 |
"./pages/**/*.{js,ts,jsx,tsx}",
|
| 7 |
"./components/**/*.{js,ts,jsx,tsx}",
|
| 8 |
"./App.tsx"
|
|
|
|
| 11 |
extend: {},
|
| 12 |
},
|
| 13 |
plugins: [],
|
| 14 |
+
}
|