Oussama Bennaci

Results 3 comments of Oussama Bennaci

@yelvert I did it by overriding the Dockerfile's `CMD` https://github.com/abiosoft/caddy-docker/blob/master/Dockerfile#L55 ```yml caddy: image: abiosoft/caddy command: [ "--conf", "/etc/Caddyfile", "--log", "stdout", "--agree=true", "-ca", "https://acme-staging-v02.api.letsencrypt.org/directory" ] ```

Using Vite's `import.meta.glob` works. I guess the snippet/typing could be improved a little with: ```astro --- // ... const images = import.meta.glob('../images/*/*', { import: 'default' }) const imagesrc = await...

@Melzmr Can't figure out how to achieve that, can you share a snippet perhaps?