- 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
16 lines
338 B
JavaScript
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);
|
|
}
|