8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
import { defineConfig } from 'astro/config'
|
|
|
|
export default defineConfig({
|
|
site: "https://example.org/",
|
|
devToolbar: {
|
|
enabled: false
|
|
}
|
|
})
|