This repository has been archived on 2024-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
Nexus-Polestar/.app/astro/astro.config.ts

12 lines
347 B
TypeScript
Raw Permalink Normal View History

2023-08-30 00:46:33 -05:00
import { defineConfig } from 'astro/config'
2023-09-10 04:31:31 -05:00
import mdx from '@astrojs/mdx'
2023-08-30 00:46:33 -05:00
export default defineConfig({
compressHTML: true,
2023-09-12 02:55:33 -05:00
publicDir: "../../content/resources/",
outDir: "../../.build/output/astro",
cacheDir: "../../build/output/astro-cache/",
2023-09-09 19:01:57 -05:00
server: {host: false},
2023-09-10 04:31:31 -05:00
integrations: [mdx()],
build: {format: 'file'}
2023-08-30 00:46:33 -05:00
})