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/astro/astro.config.ts
2023-08-30 01:46:33 -04:00

18 lines
No EOL
364 B
TypeScript

import { defineConfig } from 'astro/config'
export default defineConfig({
compressHTML: true,
publicDir: "./src/public",
outDir: "../.build/output/astro",
cacheDir: "../build/output/astro-cache/",
server: {
host: false,
port: 2023
},
build: {
format: 'file'
},
experimental: {
assets: true,
}
})