astro-blog-kit 0.3.4 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/integration.ts +1 -1
- package/package.json +1 -1
package/integration.ts
CHANGED
|
@@ -84,7 +84,7 @@ function createThemePlugin(theme: BlogTheme): Plugin {
|
|
|
84
84
|
load(id) {
|
|
85
85
|
if (id === RESOLVED_VIRTUAL_MODULE_ID) {
|
|
86
86
|
// Retornamos CSS puro — Vite lo procesa como módulo CSS
|
|
87
|
-
return css
|
|
87
|
+
return `export default ${JSON.stringify(css)};`;
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
90
|
// Fuerza el tipo del módulo como CSS para que Vite lo trate correctamente
|
package/package.json
CHANGED