Questions tagged [qwik]
98 questions
0
votes
0 answers
The JSX import source cannot be set without also enabling React's "automatic" JSX transform
I'm trying to use Material UI icons inside my Qwik website.
I used the answers of If possible, how to use MUI with Qwik framework? and here's my Icons.jsx file:
/** @jsxImportSource react */
import { qwikify$ } from '@builder.io/qwik-react'
import…

Fatemeh motlagh
- 129
- 3
0
votes
2 answers
How to pass DOM elements for libraries (eg. ChartJS, Hightcharts) in Virtual DOMs (such as Qwik)?
Background
I have personally used React, Vue and Angular extensively in the past. And a lot of times I need to create applications with charts generated within them from selective data. I'm recently trying out Qwik due to its promise of speed and…
0
votes
0 answers
How to limit value types in director-based routing in Qwik?
If you want to have a blog with pagination, this can be one routing example in Qwik:
- src
- routes
- blog
- index.jsx
- [pageNumber]
- index.jsx
And it works for /blog and /blog/2 URLs.
The problem is that, it also works…

Big boy
- 1,113
- 2
- 8
- 23
0
votes
1 answer
How can I use swiperjs inside qwik?
I'm trying to use swiper js inside my qwik project. Qwik that belongs to builder.io.
The component gets loaded and the UI is shown. But the behavior is not applied on it.
This is my code. But it does not work:
import { component$ } from…

Big boy
- 1,113
- 2
- 8
- 23
0
votes
1 answer
What launch.json config to debug a Qwik app
I created the basic Qwik starter app using npm create qwik@latest.
This create the following package.json scripts :
"scripts": {
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr…

Matthieu Riegler
- 31,918
- 20
- 95
- 134
0
votes
2 answers
Qwik ecosystem’s answer to Formik
Since Qwik is React-like and not a React runtime, not all of the popular libraries that exist in the React ecosystem exist in the Qwik ecosystem. Is there an existing Qwik alternative to Formik?

Zac Bilmen
- 5
- 2