We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3.25.3
"fastify-vite-vue": "^3.0.0-alpha.12"
14.7
macOS
12.1 (21C52)
I use a dynamic lazy load of components as part of the layout, like that:
return import(`../components/layouts/${componentName}.vue`).then(component => { components[componentName] = component.default; })
Those components are loaded in both SSR and frontend, but its CSS doesn't include in the SSR resource.
import()
CSS should be included in the SSR bundle, with hydration.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Prerequisites
Fastify version
3.25.3
Plugin version
"fastify-vite-vue": "^3.0.0-alpha.12"
Node.js version
14.7
Operating system
macOS
Operating system version (i.e. 20.04, 11.3, 10)
12.1 (21C52)
Description
I use a dynamic lazy load of components as part of the layout, like that:
Those components are loaded in both SSR and frontend, but its CSS doesn't include in the SSR resource.
Steps to Reproduce
import()
function.Expected Behavior
CSS should be included in the SSR bundle, with hydration.
The text was updated successfully, but these errors were encountered: