-
-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to integrate veaury into quasar-vite app? #78
Comments
@mukeshghodela-easternts Like the standard vite project configuration, use veauryVitePlugins. |
@devilwjp But it is giving error "vite.createFilter is not a function" |
// FILE: vite.config.js
import { defineConfig } from 'vite'
import veauryVitePlugins from 'veaury/vite/index.js'
import vue from '@vitejs/plugin-vue'
import { quasar, transformAssetUrls } from '@quasar/vite-plugin'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
veauryVitePlugins({
type: 'vue',
// Configuration of @vitejs/plugin-vue
vueOptions: { template: { transformAssetUrls } },
}),
quasar({
sassVariables: 'src/quasar-variables.sass'
})
]
}) |
@devilwjp Thanks I will try this :) |
@devilwjp How to use React components with Typescript. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: