quasar-ui-danx 0.2.23 → 0.2.24

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -34,8 +34,37 @@
34
34
  # Setup
35
35
 
36
36
  ```bash
37
- $ yarn add -D sass vite-svg-loader quasar quasar-ui-danx
38
- $ yarn
37
+ yarn create vue # Follow instructions for settings up new Vue App
38
+ yarn add quasar-ui-danx quasar
39
+ yarn add -D sass vite-svg-loader tailwindcss eslint eslint-plugin-import autoprefixer
40
+ ```
41
+
42
+ ### Setup Tailwind
43
+
44
+ Initialize config files for tailwind
45
+ NOTE: vite will automatically pick up the postcss.config.js file, no need to manually configure anything
46
+
47
+ ```
48
+ npx tailwindcss init -p
49
+ ```
50
+
51
+ * Rename tailwind.config.js to tailwind.config.ts
52
+ * Setup your tailwind.config.ts:
53
+ * Make any changes to the colors object
54
+
55
+ ```ts
56
+ /** @type {import('tailwindcss').Config} */
57
+ export const colors = {}
58
+
59
+ export default {
60
+ content: [],
61
+ theme: {
62
+ extend: {
63
+ colors
64
+ }
65
+ },
66
+ plugins: []
67
+ }
39
68
  ```
40
69
 
41
70
  # Developing