290ff0bc1e
Co-authored-by: Copilot <copilot@github.com>
11 lines
259 B
JavaScript
11 lines
259 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
|
|
export default defineConfig({
|
|
output: 'static',
|
|
trailingSlash: 'always',
|
|
site: process.env.PUBLIC_SITE_URL ?? 'https://swansea-airport.wales',
|
|
server: {
|
|
allowedHosts: ['docker', 'localhost'],
|
|
},
|
|
});
|