astro/packages/integrations/image/test/fixtures/assets-prefix/astro.config.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
226 B
JavaScript
Raw Normal View History

import { defineConfig } from 'astro/config';
import image from '@astrojs/image';
// https://astro.build/config
export default defineConfig({
integrations: [image()],
build: {
assetsPrefix: 'http://localhost:4321',
}
});