Last active
November 7, 2024 09:16
-
-
Save Pigamo/6ad9d769a23bbdc07a9ef6f7226cbb55 to your computer and use it in GitHub Desktop.
Imports multiple images from a folder using Vite globs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const gallery = Object.values(import.meta.glob('@assets/*.{png,jpg,jpeg,PNG,JPEG}', { eager: true, as: 'url' })) |
Does anyone know how to use this in SvelteKit?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for asking the right questions. I updated the gist to reflect the answer!
Thanks @mkxto