mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 00:35:38 +02:00
18 lines
368 B
JavaScript
18 lines
368 B
JavaScript
// @ts-check
|
|
import { defineConfig, envField } from "astro/config";
|
|
import node from "@astrojs/node";
|
|
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
output: "static",
|
|
server: {
|
|
"host": "0.0.0.0",
|
|
"port": 3000,
|
|
},
|
|
env: {
|
|
schema: {
|
|
PEER_URL: envField.string({ context: "server", access: "secret", optional: true }),
|
|
}
|
|
}
|
|
}); |