Skip to content

Instantly share code, notes, and snippets.

@ngseke
Created October 28, 2023 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ngseke/9c89bf6375eb0c05d7bd6063d7a618f7 to your computer and use it in GitHub Desktop.
Save ngseke/9c89bf6375eb0c05d7bd6063d7a618f7 to your computer and use it in GitHub Desktop.
Vite `import.meta.glob`
const modules = import.meta.glob('./components/*/index.ts')
for (const module of Object.values(modules)) {
console.log(module)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment