1
Fork 0
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 Normal View History

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