Explorar el Código

仿mac导航条制作

kindring hace 1 año
padre
commit
a03ed64717
Se han modificado 2 ficheros con 18 adiciones y 0 borrados
  1. 6 0
      postcss.config.js
  2. 12 0
      tailwind.config.js

+ 6 - 0
postcss.config.js

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

+ 12 - 0
tailwind.config.js

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