c4af8723bd
* WIP: adding a console logger that respect vite.logLevel * adds an optional prefix for messages * remove temporary debug log * typo fix * cleaning up log syntax * fixing logger whitespace * adding README docs * test: disable integration logging in tests * chore: add changeset
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' })]
|
|
});
|