7 lines
164 B
JavaScript
7 lines
164 B
JavaScript
|
|
import { defineConfig } from 'astro/config'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
site: "https://math.technotive.nl",
|
||
|
|
trailingSlash: 'ignore',
|
||
|
|
compressHTML: false
|
||
|
|
})
|