Upgrading webdependencies - Quasar and Node.Js 16 to Node.JS 22: class qualifiers are not added and HTML tag stil have <q-xxxx ...> instead off just HTML tag? #18193
Unanswered
nkamp
asked this question in
General - Components / Directives / etc
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I'm upgrading the application from Node.Js 16 to Node.Js 22. I'm also upgrading the quasar dependencies:
"@quasar/extras": "^1.16.3" to "1.17.0"
"quasar": "2.11.10", to version "2.18.6"
We are using quasar as a plugin with Webpack in Vue 3.x. There is Quasar.conf.js created, which is importing app-main.scss. The quasar.fonf.js is imported in the main.ts ("import "./quasar-conf";).
My feeling is that after the upgrade of Node.JS and quasar, that quasar is not right loaded or...?
But now the css classes are not added like the quasar component <q header .../>
With Node.Js22/quasar 2.18.6 and I look in the 'Inspector' of the browser console than I see at the class element:
<q-header id="app" class="test-env text-white" .... />... </q-header>In the version with Node.js version 16 with quasar version 2.11.10 it was:
<header id="app" class="q-header q-layout__section--marginal fixed-top test-env text-white" .... >.... </header>So with Node.Js version 22 and Quasar 2.18.6 than:
Is in this Quasar version can't find the scss files? Has this been changed?
Further I get a lot of warnings, but I don't think that this is the issue:
Beta Was this translation helpful? Give feedback.
All reactions