blob: 5a9b336e3f6f5f10c4ad991832247208f93e054a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// @ts-check
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
devToolbar: {
enabled: false
},
output: 'hybrid',
scripts: {
hoistPerPage: true
}
})
|