72c760e9b8
* feat(image): throw if no `alt` is provided * chore: add changeset * docs(image): update README * updated alt text stuff throughout * fixing with-mdx test suite * warn for missing alt text, will throw an error in a future release * final README tweaks Co-authored-by: Tony Sullivan <tony.f.sullivan@outlook.com> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
8 lines
225 B
JavaScript
8 lines
225 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import image from '@astrojs/image';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: 'http://localhost:3000',
|
|
integrations: [image({ logLevel: 'silent' })]
|
|
});
|