Files
formulation/scripts/dev-server.mjs
T
nicholas 21651e1ce8 feat(ui): meez visual alignment and unified responsive layouts across desktop and mobile
- Resolve ingredient table overflow and 2-column layout on laptop screens (1280px-1440px)
- Align recipe, ingredient, and directory pages with meez visual design specifications
- Implement segmented icon navigation tabs across recipe and ingredient detail views
- Standardize top utility bar and entity detail header alignment across all viewports
- Fix mobile home page filter popup z-index and viewport overflow clipping
- Clean up legacy prototype media queries and consolidate responsive CSS system
2026-08-17 00:48:35 -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);
}