We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abe1a44 commit 443e3e2Copy full SHA for 443e3e2
header/global.css
@@ -0,0 +1,3 @@
1
+@tailwind base;
2
+@tailwind components;
3
+@tailwind utilities;
header/postcss.config.js
@@ -0,0 +1,9 @@
+import tailwindcss from 'tailwindcss';
+import autoprefixer from 'autoprefixer';
+
4
+export default {
5
+ plugins: [
6
+ tailwindcss(),
7
+ autoprefixer(),
8
+ ],
9
+}
header/tailwind.config.js
+/** @type {import('tailwindcss').Config} */
+ content: ['src/*.tsx'],
+ theme: {
+ extend: {},
+ },
+ plugins: [],
0 commit comments