Skip to content

Commit 12b0b8a

Browse files
authored
fix(css): temporary add ?. after this.getModuleInfo in vite:css-post (#19478)
1 parent d686252 commit 12b0b8a

File tree

1 file changed

+9
-5
lines changed
  • packages/vite/src/node/plugins

1 file changed

+9
-5
lines changed

packages/vite/src/node/plugins/css.ts

+9-5
Original file line numberDiff line numberDiff line change
@@ -645,11 +645,15 @@ export function cssPostPlugin(config: ResolvedConfig): Plugin {
645645

646646
// build CSS handling ----------------------------------------------------
647647

648-
const cssScopeTo = (
649-
this.getModuleInfo(id)?.meta?.vite as
650-
| CustomPluginOptionsVite
651-
| undefined
652-
)?.cssScopeTo
648+
const cssScopeTo =
649+
// NOTE: `this.getModuleInfo` can be undefined when the plugin is called directly
650+
// adding `?.` temporary to avoid unocss from breaking
651+
// TODO: remove `?.` after `this.getModuleInfo` in Vite 7
652+
(
653+
this.getModuleInfo?.(id)?.meta?.vite as
654+
| CustomPluginOptionsVite
655+
| undefined
656+
)?.cssScopeTo
653657

654658
// record css
655659
if (!inlined) {

0 commit comments

Comments
 (0)