Skip to main content

ASTRO


Astro

INSTALLATION

npm create astro@latest

CONFIGURATION

  • Change port and host through the CLI:
npm run start -- --port 3013 --host 192.168.0.52
  • Change port and host in the astro.config.mjs:
export default defineConfig ({
integrations: [tailwind()],
server: {
port: 3013,
host: "192.168.0.52"
},
});

INTEGRATIONS

  • Tailwind
npx astro add tailwind