Lazy-Loaded vue-router components don't work with SSR
问题 I have two different entry points for server.js and client.js.(I'm using vue-server-renderer and laravel-mix) - (my server.js and client.js looks exactly like described here - spatie/laravel-server-side-rendering and if I make static export import Test from '../views/Test' it works.. If I try importing the route without lazy loading, SSR works: import Test from "../views/Test"; export const routes = [{ path: '/my-route', name: "Test", component: Test, }] But if I try lazy-loading, it fails on