Mobile Performance Issue in CLI SSR and vite #17796
Unanswered
amirmmonir
asked this question in
CLI - SSR mode
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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