Skip to content

Astro.glob() 在 Astro 文件外部使用。

AstroGlobUsedOutside:Astro.glob(GLOB_STR) 只能在 .astro 文件中使用。可以使用 import.meta.glob(GLOB_STR) 来代替以获得类似的结果。

¥AstroGlobUsedOutside: Astro.glob(GLOB_STR) can only be used in .astro files. import.meta.glob(GLOB_STR) can be used instead to achieve a similar result.

¥What went wrong?

Astro.glob() 只能在 .astro 文件中使用。你可以改用 import.meta.glob() 来实现相同的结果。

¥Astro.glob() can only be used in .astro files. You can use import.meta.glob() instead to achieve the same result.

也可以看看:

¥See Also:

Astro 中文网 - 粤ICP备13048890号