wzg před 5 měsíci
rodič
revize
8c0892d054
3 změnil soubory, kde provedl 15 přidání a 0 odebrání
  1. 1 0
      .env
  2. 5 0
      .prettierrc
  3. 9 0
      tailwind.config.js

+ 1 - 0
.env

@@ -0,0 +1 @@
+VITE_OPENAI_API_KEY=sk-e9855234f47346049809ce23ed3ebe3f

+ 5 - 0
.prettierrc

@@ -0,0 +1,5 @@
+{
+  "tabWidth": 2,
+  "useTabs": false,
+  "singleQuote": true
+}

+ 9 - 0
tailwind.config.js

@@ -0,0 +1,9 @@
+/** @type {import('tailwindcss').Config} */
+export default {
+  content: ['./src/**/*.{vue,js,ts,html}'],
+  theme: {
+    extend: {},
+  },
+  plugins: [],
+}
+