diff --git a/README.md b/README.md index abf23b5f..324a1016 100644 --- a/README.md +++ b/README.md @@ -132,6 +132,36 @@ export default {
+
+Quasar
+ +```ts +// vite.config.js [Vite] +import Components from 'unplugin-vue-components/vite' +import { defineConfig } from 'vite' + +export default defineConfig({ + plugins: [ + Components({ /* options */ }) + ] +}) +``` + +```ts +// quasar.config.js +export default defineConfig(() => { + return { + build: { + vitePlugins: [ + ['unplugin-vue-components/vite', { /* options */ }], + ] + }, + } +}) +``` + +
+
esbuild