Files
nicholasandnicholas 2a1e16ed30
Build & Deploy Formulation / Build & Push Image (push) Failing after 15s
Build & Deploy Formulation / deploy (push) Skipped
add core features (#14)
Reviewed-on: #14
Co-authored-by: Nicholas Ward <nicholaspward@outlook.com>
2026-08-18 18:22:34 -05:00

16 lines
338 B
JavaScript

import { dev } from "astro";
try {
const server = await dev({
configFile: "astro.app.config.mjs",
server: {
port: 4322,
host: true
}
});
console.log("Astro dev server is running on http://localhost:4322/app/");
} catch (err) {
console.error("Failed to start Astro dev server:", err);
process.exit(1);
}