10 lines
204 B
JavaScript
10 lines
204 B
JavaScript
|
import { defineConfig } from 'astro/config'
|
||
|
export default defineConfig({
|
||
|
srcDir: './astro',
|
||
|
outDir: './app',
|
||
|
compressHTML: true,
|
||
|
server: {
|
||
|
host: false,
|
||
|
port: 1567
|
||
|
}
|
||
|
})
|