Hello! I know we can prepend "Lazy" to a component name to lazy load it. But would it work if the component is explicitely imported from somewhere else than /components? Like this:
from
import Banner from '@/components/Banner/Banner.vue'
import Banner from '@/components/Banner/Banner.vue'
to
import LazyBanner from '@/components/Banner/Banner.vue'
import LazyBanner from '@/components/Banner/Banner.vue'