-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
Quasar+vite stuck on building the app with blitzae #160
Comments
🤔 can you share a reproduction? Never seen that error before. |
I have just created an empty quasar project, with npm init quasar, vite cli, typescript, eslint. Updated: When runing in dev: "quasar dev" all works fine
when using (TypeScript): <script setup lang="ts"> It shows squiggly line with the message: Cannot find module 'blitzar' or its corresponding type declarations.ts(2307) Please advice :) P.S: I had a previous version of the app where all was working fine, something probably changed. |
Hi, |
The same is happening for me registering BlitzForm as a global component I can't build the project any more. Just add this in a Quasar boot file and it should stuck without any messages: import { boot } from 'quasar/wrappers'
import { BlitzForm } from 'blitzar'
export default boot(({ app }) => {
app.component('BlitzForm', BlitzForm)
}) @nurielmeni did you find a workaround for this? |
Same for me after changing from webpack to vite to build. Any idea how to resolve? |
Same for me too. |
Anybody aware of a maintained alternative? |
I am also experiencing the same issue. And works in dev. |
Probably ts error that causes the issue:
Cannot find module 'blitzar' or its corresponding type declarations ts(2307).
On dev all works fine, but the build process stuck.
The text was updated successfully, but these errors were encountered: