blob: 983a6947d115ea0bac610b9351d1058db705fc5d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import db from '@astrojs/db';
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
integrations: [db()],
devToolbar: {
enabled: false,
},
});
|