les-particules-org/astro.config.mjs

15 lines
258 B
JavaScript
Raw Permalink Normal View History

2023-01-30 21:49:01 +00:00
import { defineConfig } from 'astro/config';
2024-01-01 23:34:17 +00:00
import node from "@astrojs/node";
2023-01-30 21:49:01 +00:00
// https://astro.build/config
2024-01-01 23:34:17 +00:00
export default defineConfig({
output: "hybrid",
adapter: node({
mode: "standalone"
2024-11-12 14:56:02 +00:00
}),
server: {
port: 8080,
host: true
}
2024-01-01 23:34:17 +00:00
});