We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2a2a89 commit 7b2ead2Copy full SHA for 7b2ead2
README.md
@@ -132,6 +132,36 @@ export default {
132
133
<br></details>
134
135
+<details>
136
+<summary>Quasar</summary><br>
137
+
138
+```ts
139
+// vite.config.js [Vite]
140
+import Components from 'unplugin-vue-components/vite'
141
+import { defineConfig } from 'vite'
142
143
+export default defineConfig({
144
+ plugins: [
145
+ Components({ /* options */ })
146
+ ]
147
+})
148
+```
149
150
151
+// quasar.config.js
152
+export default defineConfig(() => {
153
+ return {
154
+ build: {
155
+ vitePlugins: [
156
+ ['unplugin-vue-components/vite', { /* options */ }],
157
158
+ },
159
+ }
160
161
162
163
+<br></details>
164
165
<details>
166
<summary>esbuild</summary><br>
167
0 commit comments