Debbie O’Brien
Frontend Tech Lead @Patterson Agency in Mallorca Teacher @Vue School Writer @Ultimate Courses Contributor @webpack and @Nuxt and other stuff
debs_obrien
Performance
Run Performance Tests Be aware of what your shipping Use webpack analyzer to see what is being bundled Run an audit in chrome dev tools Check your css with CSS Stats
Dev Tools Audit
Analyse your bundle
Analyse your bundle
Code Splitting Just change this: import BaseHero from ‘~/components/BaseHero.vue’ components: { BaseHero, },
to this: components: { BaseHero: () => import(‘~/components/BaseHero.vue’), },