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.config.mjs

10 lines
204 B
JavaScript
Raw Normal View History

2023-02-01 14:08:44 -05:00
import { defineConfig } from 'astro/config'
2023-07-10 08:14:10 -04:00
export default defineConfig({
srcDir: './astro',
outDir: './app',
compressHTML: true,
server: {
host: false,
port: 1567
}
})