ef9345767b
* fix: SSR builds were hitting an undefined error and skipping the step for copying original assets * chore: update lockfile * chore: adding better error validation to getImage and getPicture * refactor: cleaning up index.ts * refactor: moving SSG build generation logic out of the integration * splitting build to ssg & ssr helpers, re-enabling SSR image build tests * sharp should automatically rotate based on EXIF * cleaning up how static images are tracked for SSG builds * undo unrelated mod.d.ts change * chore: add changeset
8 lines
203 B
JavaScript
8 lines
203 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()]
|
|
});
|