Explorar o código

仿mac导航条制作

kindring hai 1 ano
pai
achega
a03ed64717
Modificáronse 2 ficheiros con 18 adicións e 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: [],
+}
+