1
0
Fork 0
mirror of https://ark.sudovanilla.org/Korbs/butterflyvu.git synced 2024-12-22 23:33:54 +00:00
butterflyvu/astro.config.mjs

29 lines
574 B
JavaScript
Raw Normal View History

import { defineConfig } from 'astro/config'
2024-06-06 00:48:11 +00:00
// Settings
import { SiteSettings } from './config.json'
2024-06-06 21:51:07 +00:00
2024-06-06 00:48:11 +00:00
// Integrations
import mdx from '@astrojs/mdx'
2024-06-06 00:48:11 +00:00
// Astro Configuration
2024-06-06 00:48:11 +00:00
export default defineConfig({
// Information
site: SiteSettings.SiteProtocol + '://' + SiteSettings.SiteDomain,
base: SiteSettings.SiteBase,
// Integrations
integrations: [
mdx()
],
// Server Output
2024-11-12 22:03:52 +00:00
output: "static",
2024-06-06 00:48:11 +00:00
prefetch: true,
server: {
port: 2014,
host: true
},
// Others
2024-06-06 00:48:11 +00:00
devToolbar: {
enabled: false
}
})