2023-01-30 22:49:01 +01:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
|
|
|
|
|
|
// https://astro.build/config
|
2024-01-02 00:34:17 +01:00
|
|
|
export default defineConfig({
|
2024-11-12 15:56:02 +01:00
|
|
|
server: {
|
|
|
|
|
port: 8080,
|
|
|
|
|
host: true
|
|
|
|
|
}
|
2024-01-02 00:34:17 +01:00
|
|
|
});
|