Mobile Performance Issue in CLI SSR and vite #17796
Replies: 2 comments 2 replies
-
|
Hello Analyzing my website in page speed insights, I can see that in the computer report, the page renders progressively, but in the mobile report the page renders suddenly in the last two frames. |
Beta Was this translation helpful? Give feedback.
-
|
Looks like you're not benchmarking the SSR version of your app. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello Everybody,

I'm a huge fan of quasar and of how flexible and batteries included framework that rocket starts any project in no time.
I Started implementing a real world project which is very important. I used Vite CLI and SSR Mode. It was great but when it comes to measuring performance in page speed, the desktop looks good at 82% but the mobile performance indicator is disastrous at 41% !!!
I don't whether it's something I do wrong or what, but any kind of help will be very appreciated.
here is a copy of the quasar.config.ts and the performance report.
`
/* eslint-env node */
// Configuration for your app
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-js
import { configure } from 'quasar/wrappers';
import { mergeConfig } from 'vite';
export default configure((ctx) => {
return {
preFetch: true,
boot: ['app-setup', { path: 'error-handler', server: false }],
};
});
`
Beta Was this translation helpful? Give feedback.
All reactions