Parcourir la source

chore: restore Tailwind CSS config files for web-dashboard

kingkong il y a 2 mois
Parent
commit
830129cf9c
2 fichiers modifiés avec 12 ajouts et 0 suppressions
  1. 6 0
      apps/web-dashboard/postcss.config.js
  2. 6 0
      apps/web-dashboard/tailwind.config.js

+ 6 - 0
apps/web-dashboard/postcss.config.js

@@ -0,0 +1,6 @@
+module.exports = {
+  plugins: {
+    tailwindcss: {},
+    autoprefixer: {},
+  },
+}

+ 6 - 0
apps/web-dashboard/tailwind.config.js

@@ -0,0 +1,6 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+  content: ['./src/**/*.{js,jsx,ts,tsx}'],
+  theme: { extend: {} },
+  plugins: [],
+}