Astro.glob() used outside of an Astro file.
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.
무엇이 잘못되었나요?
섹션 제목: 무엇이 잘못되었나요?Astro.glob()
은 .astro
파일에서만 사용할 수 있습니다. 대신 import.meta.glob()
을 사용하여 동일한 결과를 얻을 수 있습니다.
더 보기:
Error Reference